/* Premium Profile Customizations */
.premium-profile-container {
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.premium-border-gold {
    border: 3px solid #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.premium-border-silver {
    border: 3px solid #C0C0C0;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
}

.premium-border-bronze {
    border: 3px solid #CD7F32;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.5);
}

.premium-bg-scroll {
    background-image: url('/images/bg_scroll.jpg');
    background-size: cover;
    color: #333;
}

.premium-bg-dark {
    background-color: #2c3e50;
    color: #ecf0f1;
}

.premium-bg-royal {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
}

.premium-badge {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 10px;
    color: #000;
    font-weight: bold;
    font-size: 0.8em;
    margin-left: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Responsive Table Fixes for Profile */
@media screen and (max-width: 768px) {
    .profile-table input[type="text"] {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .profile-table td {
        display: block;
        width: 100%;
        padding: 5px 0;
    }
}
