/* Account Dashboard Layout */
.sro-panel {
    background: linear-gradient(145deg, rgba(20, 16, 26, 0.98) 0%, rgba(12, 10, 16, 0.98) 100%);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.75rem;
}

.sro-panel-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    position: relative;
    z-index: 1;
}

.sro-panel-title {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-300);
    margin: 0;
}

.sro-panel-body {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 10px;
}

.account-card {
    background: rgba(13, 10, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.account-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.account-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.account-card .card-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold-500);
    margin: 0;
}

/* User Info Styles */
.info-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.info-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-label i {
    color: var(--gold-600);
    margin-right: 5px;
    width: 16px;
    text-align: center;
}

.info-value {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Balance Styles */
.balance-row {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 3px solid var(--gold-600);
}

.balance-icon {
    font-size: 1.8rem;
    margin-right: 15px;
    width: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.balance-details {
    display: flex;
    flex-direction: column;
}

.balance-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.balance-value {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    font-family: 'Cinzel', serif;
}

/* Sidebar Menu */
.account-nav-header {
    padding: 15px 20px 5px;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    color: var(--gold-600);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    opacity: 0.8;
}

.account-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.account-nav-list li:last-child {
    border-bottom: none;
}

.account-nav-list a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.account-nav-list a i {
    width: 25px;
    font-size: 1.1rem;
    color: var(--gold-600);
    margin-right: 10px;
    text-align: center;
    transition: all 0.2s ease;
}

.account-nav-list a:hover {
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold-500);
}

.account-nav-list a.active {
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.2) 0%, transparent 100%);
    color: var(--gold-400);
    border-left: 3px solid var(--gold-500);
}

/* Modal Customization */
.sro-modal .modal-content {
    background: #0d0a12;
    border: 1px solid rgba(201, 162, 39, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(201, 162, 39, 0.15);
}

.sro-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(201, 162, 39, 0.05);
}

.sro-modal .modal-title {
    font-family: 'Cinzel', serif;
    color: var(--gold-500);
}

.sro-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sro-modal .form-control {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.sro-modal .form-control:focus {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--gold-500);
    box-shadow: 0 0 0 0.25rem rgba(201, 162, 39, 0.25);
    color: #fff;
}
