/* Override styles for the platinum section to match index.php exactly */

/* Cancel the bouncing effect on hover */
#vip .profile-card:hover {
    transform: none !important;
}

/* Prevent the image from scaling up on hover */
#vip .profile-card:hover .profile-image {
    transform: none !important;
}

/* Remove the rounded backgrounds from type and nationality labels */
#vip .escort-type,
#vip .nationality {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Fix the touring badge to match index.php exactly */
#vip .touring-badge {
    position: absolute !important;
    bottom: 7px !important;
    right: 7px !important;
    left: auto !important; /* Override any left positioning */
    top: auto !important; /* Override any top positioning */
    transform: none !important; /* Remove any transform */
    padding: 2px 8px !important;
    border-radius: 4px !important;
    color: #FFFFFF !important;
    font-size: 12px !important;
    font-weight: bold !important;
    z-index: 2 !important;
}

#vip .touring-badge.touring-now {
    background-color: green !important;
}

#vip .touring-badge.touring-soon {
    background-color: orange !important;
}

/* Make sure the top and bottom overlays have correct styling */
#vip .top-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 35px !important;
    background: rgba(0, 0, 0, 0.6) !important;
    display: flex !important;
    align-items: center !important;
    padding: 8px 10px !important;
    z-index: 1 !important;
}

#vip .bottom-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 37px !important;
    background: rgba(75, 0, 130, 0.6) !important;
    display: flex !important;
    align-items: center !important;
    padding: 8px 10px !important;
    z-index: 1 !important;
}