/* ========== PROFIL ========== */
.profile-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 1rem;
}
.profile-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.profile-field {
    margin-bottom: 1rem;
}
.profile-field label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
}
.profile-field input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
}
.profile-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}
.plan-section {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.current-plan-card {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    border-radius: 1rem;
    padding: 1rem;
    margin: 1rem 0;
}
.plan-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}
.btn-upgrade {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 2rem;
    padding: 0.5rem 1.2rem;
    border: none;
    cursor: pointer;
}
.upgrade-plans-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.plan-offer-card {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1rem;
    width: 280px;
    border: 1px solid #e2e8f0;
}
.plan-offer-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}
.plan-price {
    font-weight: 700;
    color: #3b82f6;
}
.select-plan-btn {
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 2rem;
    padding: 0.3rem 1rem;
    width: 100%;
    margin-top: 0.5rem;
    cursor: pointer;
}
.settings-container {
    padding: 1rem;
}
.stat-card {
    background: #f1f5f9;
    border-radius: 0.8rem;
    padding: 0.6rem;
    margin-bottom: 0.6rem;
}

/* ========== ADMIN PLANS ========== */
.admin-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
}
.admin-tab-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    cursor: pointer;
}
.admin-tab-btn.active {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}
.plan-admin-card {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}
.plan-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.plan-admin-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    font-size: 0.8rem;
}
.plan-admin-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}
.plan-admin-actions button {
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    cursor: pointer;
}