/* Profile Header (inside player-profile-container) */
.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding: 70px 15px 0;
}

.profile-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info h2 {
    margin: 0 0 4px 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.view-profile-link {
    color: #ee8a04 !important;
    font-size: 14px;
    text-decoration: none;
}

.view-profile-link:hover {
    text-decoration: underline;
}

/* Section Title */
.section-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding: 0 15px !important;
}

/* Menu List */
.menu-list {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
    cursor: pointer;
    transition: opacity 0.15s;
}

.menu-item:hover {
    opacity: 0.8;
}

.menu-item.disabled {
    cursor: default;
    opacity: 0.5;
}

.menu-item.disabled:hover {
    opacity: 0.5;
}

.menu-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.menu-item-left span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.menu-chevron {
    width: 20px;
    height: 20px;
    color: #666;
    flex-shrink: 0;
}


/* Soon Tag */
.soon-tag {
    background: rgba(238, 138, 4, 0.15);
    color: #ee8a04;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(238, 138, 4, 0.3);
}

.premium-active-tag {
    background: rgba(52, 199, 89, 0.12);
    color: #34c759;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(52, 199, 89, 0.3);
}

.cancel-sub-btn {
    background: none;
    border: none;
    border-bottom: 1px solid #2a2a2a;
    color: #34c759;
    font-size: 10px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    padding: 8px 0 8px 36px;
    display: block;
    width: 100%;
    text-align: left;
    transition: opacity 0.2s;
}
.cancel-sub-btn:hover { opacity: 0.7; }

.cancel-date {
    font-size: 11px;
    color: #555;
    padding: 7px 0 7px 36px;
    border-bottom: 1px solid #2a2a2a;
    display: block;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Menu Separator */
.menu-separator {
    color: #666;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 0 8px;
}

/* Menu Panel (expandable) */
.menu-panel {
    border-bottom: 1px solid #2a2a2a;
}

/* Notification Settings */
.notification-settings {
    padding: 12px 0 16px;
}

.settings-description {
    margin: 0 0 16px 0;
    color: #999;
    font-size: 13px;
    line-height: 1.5;
}

.notification-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}

.notification-message.success {
    background: rgba(143, 160, 108, 0.15);
    border: 1px solid #8fa06c;
    color: #8fa06c;
}

.notification-message.error {
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid #dc2626;
    color: #f87171;
}

.setting-row {
}

.toggle-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 8px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.toggle-label-text {
    display: flex;
    flex-direction: column;
}

.toggle-hint {
    color: #666;
    font-size: 11px;
    font-weight: 400;
    margin-top: 3px;
}

.toggle-switch {
    position: relative;
    width: 54px;
    height: 28px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #333;
    transition: all 0.3s;
    border-radius: 28px;
    border: 2px solid #555;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: #666;
    transition: all 0.3s;
    border-radius: 50%;
}

.toggle-input:checked + .toggle-slider {
    background-color: #ee8a04;
    border-color: #ee8a04;
}

.toggle-input:checked + .toggle-slider:before {
    transform: translateX(26px);
    background-color: #fff;
}

#frequencyOptions {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #333;
}

.frequency-title {
    margin: 0 0 12px 0;
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    margin-bottom: 10px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option:hover {
    border-color: #ee8a04;
}

.radio-option input[type="radio"] {
    margin-top: 4px;
    accent-color: #ee8a04;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-content {
    flex: 1;
}

.radio-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.radio-description {
    color: #999;
    font-size: 12px;
    line-height: 1.4;
}

.btn-save {
    width: 100%;
    margin-top: 12px;
    padding: 12px 24px;
    background: #ee8a04;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-save:hover {
    background: #d67a03;
}

.btn-save:disabled {
    background: #666;
    cursor: not-allowed;
}

/* Logout */
.profile-actions {
    margin-top: 30px;
    padding: 0 15px;
}

.btn-logout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: transparent;
    border: 1px solid #c62828;
    border-radius: 10px;
    color: #ef5350;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-logout:hover {
    background: rgba(198, 40, 40, 0.1);
}

.btn-logout svg {
    stroke: #ef5350;
}

/* Organograma */
.org-chart {
    padding: 20px 10px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.org-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 10px 14px;
    min-width: 0;
    flex: 1;
    max-width: 200px;
}

.org-ceo {
    border-color: rgba(238, 138, 4, 0.3);
    background: rgba(238, 138, 4, 0.06);
    max-width: 220px;
}

.org-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ee8a04;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.org-avatar-empty {
    background: #2a2a2a;
    color: #555;
    border: 1px dashed #444;
}

.org-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.org-name {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.org-role {
    color: #888;
    font-size: 11px;
    font-weight: 400;
    margin-top: 1px;
}

.org-ceo .org-role {
    color: #ee8a04;
}

.org-connector {
    width: 1px;
    height: 16px;
    background: #333;
}

.org-branch-line {
    width: calc(50% - 30px);
    max-width: 160px;
    height: 1px;
    background: #333;
    position: relative;
}

.org-branch-line::before,
.org-branch-line::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 16px;
    background: #333;
}

.org-branch-line::before {
    left: 0;
}

.org-branch-line::after {
    right: 0;
}

.org-level-team {
    margin-top: 16px;
}

.org-branches {
    display: flex;
    gap: 12px;
    width: 100%;
    align-items: flex-start;
    margin-top: 16px;
}

.org-branch {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-branch .org-card {
    width: 100%;
    max-width: 100%;
}

.org-branch-gap {
    height: 8px;
}

