/**
 * ログアウトボタンUI修正CSS
 */

/* ログアウトボタンのスタイル */
.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.sidebar-footer .logout-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.sidebar-footer .logout-btn:hover {
    background: #fee2e2;
    border-color: #ef4444;
    color: #ef4444;
}

.sidebar-footer .logout-btn:active {
    transform: scale(0.98);
}

.sidebar-footer .logout-btn i {
    font-size: 1rem;
    color: inherit;
    transition: color 0.3s ease;
}

/* サイドバー全体の構造を確保 */
.sidebar {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
}

/* モバイル対応 */
@media (max-width: 991px) {
    .sidebar-footer {
        padding: 0.75rem;
    }
    
    .sidebar-footer .logout-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }
}