/* Profile Manager Styles */
.context-toggles {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.context-btn {
    padding: 10px 24px;
    border-radius: 99px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.context-btn:hover {
    border-color: var(--primary-400);
    color: var(--primary-600);
}

.context-btn.active {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.profile-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    transition: all 0.2s ease;
    cursor: default;
}

.profile-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.profile-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.profile-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.profile-card .profile-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.profile-card .profile-actions button {
    flex: 1;
}

.add-profile-container {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 60px;
}

.btn-dashed {
    border-style: dashed !important;
    border-width: 2px !important;
    background-color: var(--gray-50);
}

.btn-dashed:hover {
    background-color: var(--white);
    border-color: var(--primary-500) !important;
    color: var(--primary-600);
}