.vsd-1006 .vsd-element.vsd-element-beff660{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--flex-wrap:wrap;}.vsd-1006 .vsd-element.vsd-element-905f471{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:15px 15px;--row-gap:15px;--column-gap:15px;}.vsd-1006 .vsd-element.vsd-element-6132d94 > .vsd-widget-container{margin:0px 0px -18px 0px;}.vsd-1006 .vsd-element.vsd-element-5c6fdcf > .vsd-widget-container{margin:0px 0px -30px 0px;}.vsd-1006 .vsd-element.vsd-element-7de261b > .vsd-widget-container{margin:0px 0px -30px 0px;}.vsd-1006 .vsd-element.vsd-element-7de261b{z-index:10;}.vsd-1006 .vsd-element.vsd-element-51787ab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.vsd-1006 .vsd-element.vsd-element-beff660{--content-width:1250px;}.vsd-1006 .vsd-element.vsd-element-905f471{--width:25%;}.vsd-1006 .vsd-element.vsd-element-51787ab{--width:75%;}}/* Start custom CSS for html, class: .vsd-element-6132d94 *//* Container for the profile image */
.dj-featured-image-container {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Profile image */
.dj-featured-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border-radius: 12px !important;

}

/* Upload form container */
.dj-upload-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: none; /* Hidden by default on desktop */
    background: rgba(0, 0, 0, 0.7); /* Slight overlay for better visibility */
    padding: 10px;
    border-radius: 8px !important;
    z-index: 10;
}

/* Show upload controls on hover (desktop only) */
.dj-featured-image-container:hover .dj-upload-form {
    display: block;

}

/* Upload form is always visible on mobile and tablets */
@media (max-width: 768px) {
    .dj-upload-form {
        display: block;
        position: static;
        transform: none;
        background: none;
        padding: 0;
        text-align: center;
    }
}

/* Label for upload */
.dj-upload-label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: white; /* White text for better visibility on dark background */
}

/* File input */
.dj-upload-input {
    display: block;
    margin-bottom: 10px;
    padding: 8px;
    width: 100%;
    max-width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f5f5f5;
}

/* Submit button */
.dj-upload-submit, .dj-delete-button {
    display: block;
    width: 100%;
    max-width: 250px;
    padding: 10px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

/* Button hover effect */
.dj-upload-submit:hover, .dj-delete-button:hover {
    background-color: #005177;
}

/* Delete button */
.dj-delete-button {
    background-color: #ff4d4d; /* Red background for delete button */
}

.dj-delete-button:hover {
    background-color: #cc0000; /* Darker red on hover */
}

/* Spacing between buttons */
.dj-upload-submit + .dj-delete-button {
    margin-top: 10px;
}

/* Success and error messages */
.dj-upload-success, .dj-upload-error, .dj-delete-success {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
}

/* Success message style */
.dj-upload-success, .dj-delete-success {
    color: green;
}

/* Error message style */
.dj-upload-error {
    color: red;
}/* End custom CSS */
/* Start custom CSS for html, class: .vsd-element-7de261b */.badges-container {
    padding: 0 !important;
    margin: 0 !important;
}

.badge:hover {
    transform: translateY(-2px) !important;
}

.badges-container .badge:first-child {
    margin-top: 10px !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .vsd-element-5d39f50 */.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
}

.badge {
    background: #e6f7ff;
    color: #333;
    border: 1px solid #b3e0ff;
    border-radius: 12px;
    padding: 5px 12px;
    font-size: 16px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.badge-title {
    display: inline-block;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge:nth-child(1) .badge-title {
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0s;
}

.badge:nth-child(2) .badge-title {
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.1s;
}

.badge:nth-child(3) .badge-title {
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.2s;
}

.badge:nth-child(4) .badge-title {
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.3s;
}

.badge:nth-child(5) .badge-title {
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.4s;
}

.badge:nth-child(6) .badge-title {
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.5s;
}

.badge:nth-child(7) .badge-title {
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.6s;
}

.badge:nth-child(8) .badge-title {
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.7s;
}

.badge:hover {
    background: #b3e0ff;
    color: #004080;
}

.badge-title::before {
    content: "🏆";
    display: inline-block;
    margin-right: 5px;
    transition: transform 0.4s ease, margin 0.4s ease, filter 0.4s ease;
}

.badge:hover .badge-title::before {
    transform: scale(3.3) rotate(-10deg) translateX(-5px);
    margin-right: 0px; 
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
}

.badge-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.badge:hover .badge-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-15px);
}/* End custom CSS */
/* Start custom CSS *//* General container styling */
.field-container {
    margin-bottom: 2em;
    padding: 1.5em;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background-color: #f7f9fc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.field-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 0.75em;
    color: #2c3e50;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5em;
}

.field-value {
    font-size: 1.1em;
    color: #34495e;
    margin: 0;
    line-height: 1.6;
}

/* Error messages */
.info-message {
    font-size: 1em;
    color: #d9534f;
    background-color: #fbe9e7;
    padding: 1em;
    border-radius: 5px;
    border: 1px solid #d9534f;
    margin-bottom: 1em;
}

/* ACF Form Fields */
.acf-form-fields {
    margin-top: 2em;
}

.acf-submit {
    display: inline-block;
    padding: 1em 2em;
    font-size: 1.1em;
    font-weight: 600;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.acf-submit:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.acf-submit:active {
    background-color: #004494;
}

/* Labels and Inputs */
label {
    display: block;
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 0.5em;
    color: #2c3e50;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 1em;
    border: 1px solid #ccd0d4;
    border-radius: 8px;
    font-size: 1em;
    box-sizing: border-box;
    margin-bottom: 1.5em;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
    outline: none;
}

textarea {
    height: 200px;
    resize: vertical;
}

select {
    height: 3em;
}

/* Field Groups (for grouped fields) */
.field-group {
    margin-bottom: 2em;
    padding: 1.5em;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background-color: #ffffff;
}

.field-group-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 1em;
    color: #2c3e50;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5em;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .field-container {
        padding: 1.5em;
    }

    .acf-submit {
        padding: 0.75em 1.5em;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .field-container {
        padding: 1em;
    }

    .acf-submit {
        padding: 0.75em 1.2em;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .field-container {
        padding: 0.75em;
    }

    .acf-submit {
        padding: 0.5em 1em;
        font-size: 0.9em;
    }

    textarea {
        height: 150px;
    }
}

/* Utility classes */
.mt-1 {
    margin-top: 1em;
}

.mb-1 {
    margin-bottom: 1em;
}

.pt-1 {
    padding-top: 1em;
}

.pb-1 {
    padding-bottom: 1em;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: #f7f9fc;
}

.border-light {
    border-color: #e1e1e1;
}

.acf-custom-form-wrapper .acf-tab-wrap.-top {
    background: transparent;
    overflow: hidden;
    border: none !important;
}

.acf-custom-form-wrapper .acf-tab-group {
    border: none !important;
    padding-left: 0;
}

.acf-custom-form-wrapper .acf-fields > .acf-tab-wrap .acf-tab-group li a {
    background: #FFFFFF;
    border-color: #54595F;
    border: none;
    padding: 0.5rem 1.125rem;
    border-radius: 5px;
}

.acf-custom-form-wrapper .acf-field[data-width] + .acf-field[data-width],
.acf-custom-form-wrapper .acf-fields > .acf-field {
    border: none;
}

.acf-custom-form-wrapper .acf-fields > .acf-tab-wrap .acf-tab-group li.active a,
.acf-custom-form-wrapper .dj_gallery .acf-gallery-add,
.acf-custom-form-wrapper .acf-repeater-add-row {
    background: #4b83fc;
    color: #FFFFFF;
}

.acf-custom-form-wrapper .dj_gallery,
.acf-custom-form-wrapper .contact_info,
.acf-custom-form-wrapper .social_media_links  {
    width: 100% !important;
}

.acf-custom-form-wrapper .category-dj,
.acf-custom-form-wrapper .genres,
.acf-custom-form-wrapper .service_area {
    width: 50% !important;
}

.acf-custom-form-wrapper .dj_name,
.acf-custom-form-wrapper .dj_nickname,
.acf-custom-form-wrapper .dj_from_date {
    width: 33% !important;
}

.acf-custom-form-wrapper .dj_owner,
.acf-custom-form-wrapper .membership_status,
.acf-custom-form-wrapper .group_rating,
.acf-custom-form-wrapper .promotion_days,
.acf-custom-form-wrapper .badges,
.acf-custom-form-wrapper .dj_from_date .description{
    display: none !important;
}


.acf-form input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: transparent;
    outline: none;
}

.acf-form input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: #4b83fc;
    border-radius: 2px;
    box-shadow: none !important;
}

.acf-form input[type="range"]::-moz-range-track {
    width: 100%;
    height: 4px;
    background: #4b83fc;
    border-radius: 2px;
}

.acf-form input[type="range"]::-ms-track {
    width: 100%;
    height: 4px;
    background: #4b83fc;
    border-radius: 2px;
}

.acf-form input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #4b83fc;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
}

.acf-form input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #4b83fc;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.acf-form input[type="range"]::-ms-thumb {
    width: 16px;
    height: 16px;
    background: #4b83fc;
    border-radius: 50%;
    cursor: pointer;
}/* End custom CSS */