
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
* {
    box-sizing: border-box;
}
.slots{
    background:rgba(255, 255, 255, 1);
}
.slots h1{
    font-size: 46px;
    margin-bottom: 40px;
    margin-top: 30px;
}
.developer-details-container, .slots-container {
  font-family: "Source Sans 3", sans-serif;
    /*max-width: 1234px;*/
    max-width: 100%;
    padding:56px;
    margin: 0 auto 60px;
    padding: 20px;
}
.slots-container .pagination{
    display:none
}
.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.slot-card {
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s;
}
.slot-card h3{
    font-weight:700;
}

.slot-card:hover {
    transform: scale(1.05);
}
a{
    text-decoration:none;
    color:inherit;
}
.slot-card img {
    border-radius:20px;
    width: 100%;
    height: 200px !important;
    height:auto;
    object-fit: cover;
    /*max-height: 176.67px;*/
}

.slot-card h2 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #333;
}

.slot-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0;
}

/*.play-now-btn {*/
/*    display: inline-block;*/
/*    padding: 10px 20px;*/
/*    background: #ff007a;*/
/*    color: #fff;*/
/*    text-decoration: none;*/
/*    border-radius: 5px;*/
/*    margin: 10px 0;*/
/*    font-weight: bold;*/
/*}*/

.play-now-btn:hover {
    /*background: #e6006b;*/
}

.show-more-btn {
    display: block;
    margin: 20px auto;
    padding: 15px 20px;
    background: rgba(245, 245, 245, 1);
    color: rgba(0, 0, 0, 1);
    border: 1px solid black;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;

}

.show-more-btn:hover {
    background: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: 1fr;
    }
}











/* Slot Details */



.slot-details-container {
    /*max-width: 1234px;*/
    margin: 0 auto;
    padding: 20px 10%;
        overflow: hidden;
}

.slot-details-container h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.slot-details-wrapper {
      font-family: "Source Sans 3", sans-serif;
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch; /* Ensure equal height */
}

.slot-preview {
    flex: 2;
    background: rgba(245, 245, 245, 1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}


.slot-preview h1{
    color:rgba(34, 34, 34, 1) !important;
    text-align:center;
    font-size:22px;
    padding: 0px 10px 0px 10px;
    line-height:33px;
    font-weight:600;
    letter-spacing: 0.44px;
    margin-bottom: 21.5px;
    margin-top: 20px;
}
.iframe-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    height:calc(100% - 55.59px); 
    /*border-radius: 8px;*/
    overflow: hidden;
      border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Prevent interaction with the iframe */
}

.iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3); /* Slight overlay to indicate it's not interactive */
}

.play-now-btn {
    align-items: center;
    display: flex;    
    gap: 8px;
    padding: 21px 24px;
     background: linear-gradient(274deg, rgb(221 208 214) 20%, rgb(170 170 170) 100%);
    border: none;
    border-radius: 40px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 20px;
    z-index: 10;
    box-shadow:
                -4.5px 4.5px 11.36px 0px rgba(245, 245, 245, 0.25) inset,
                4.5px -4.5px 18.68px 0px rgba(242, 111, 196, 1) inset,
}

.play-now-btn:hover,.play-now-btn svg path:hover  {
    /*background: #e91e63;*/
    color:#333;
    fill:#333 !important;
}

.play-real-money-btn {
    display: none;
    text-align: center;
    padding: 21.5px;
    margin:24px;
    background: rgba(34, 34, 34, 1);
    color: #fff;
    font-weight: bold;
    border-radius: 40px;
    text-decoration: none;
    transition: background 0.3s;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0px;
    color:rgba(255, 255, 255, 1);
}

.play-real-money-btn:hover {
    background: #333;
    color:#fff;
}

.slot-info {
    flex: 1;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 16px;
    position: relative;
}

.slot-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    margin-top: 24px;
    gap: 11px;
}

.slot-info h2 {
    font-size: 20px;
    font-weight: 600;
    color:rgba(34, 34, 34, 1) !important;
    margin-top: 0px;
    margin-bottom: 0px;
}


.slot-info-logo {
    /*width: 100px;*/
    /*height: 50px;*/
    height:auto;
    width:auto;
    margin:-20px;
    margin-bottom:23px;
}

.slot-info-logo img {
    width: 100%;
    height: 100%;
    border-radius:16px;
    object-fit: contain;
}

.slot-info p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.slot-info .info-label {
    color: rgba(34, 34, 34, 1);
    font-size:18px;
    line-height:27px;
    font-weight:500;
}

.slot-info .info-value {
    font-weight: 400;
    font-size:17px;
    line-height:25.5px;
    text-align:end;
    color: rgba(34, 34, 34, 1);
;
}

.slot-info .icon-check,
.slot-info .icon-cross {
    display: inline-block;
    width: 16px;
    height: 16px;
}

.slot-meta {
    background:rgba(248, 248, 250, 1);
    padding:24px;
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
    max-width: calc(66.67% - 41px); 
    border-radius:16px;
}

.meta-items-left {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    flex: 2;
}

.slot-meta .meta-item {
    background: rgba(255, 255, 255, 1);
    padding: 15px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slot-meta .meta-item h3 {
    font-size: 18px;
    color:rgba(34, 34, 34, 1);
    font-weight: 600;
    margin-bottom: 10px;
    margin-top:0px;
    text-transform: uppercase;
}

.slot-meta .meta-value {
    font-size: 16px;
    font-weight: 400;
    color: rgba(34, 34, 34, 1);
    margin-bottom: 0px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.slot-meta .fun-rating {
    flex: 1;
    background: rgba(255, 255, 255, 1);
    padding: 15px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

.slot-meta .fun-rating h3 {
    font-size: 20px;
    line-height:30px;
    letter-spacing:0.4px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slot-meta .rating-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slot-meta .card-icon-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-meta .card-icon-background {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slot-meta .card-icon-background svg {
    width: 100%;
    height: 100%;
}

.slot-meta .card-icon-foreground {
    position: absolute;
    width: 70px;
    height: 70px;
    top:40px;
}

.slot-meta .card-icon-foreground svg {
    width: 100%;
    height: 100%;
}

.slot-meta .rating-value {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-top: -9px;
}

.icon-check {
    background: url('/wp-content/themes/mostbet/assets/slots/img/check-icon.svg') no-repeat center;
    background-size: contain;
}

.icon-cross {
    background: url('/wp-content/themes/mostbet/assets/slots/img/cross-icon.svg') no-repeat center;
    background-size: contain;
}

.meta-item.fun-rating h3{
    margin-top:20px !important;
}


.slot-meta .rating-value.green {
    color: #44A872;
}

.slot-meta .rating-value.yellow {
    color: #F0D95D;
}

.slot-meta .rating-value.red {
    color: #E75252; 
}

@media(max-width:1200px){
    .iframe-wrapper{
        padding-top:70%;
    }
}
@media(max-width:760px){
    
    .slots-container{
        padding-top:42px;
        padding-left:16px;
        padding-right:16px;

    }
     .slot-details-wrapper{
         flex-direction: column;
     }
     .slot-meta{
        max-width:100%;
        flex-direction: column-reverse
     }
    .iframe-wrapper{
            padding-top:56.25%;
               border-bottom-right-radius: 0px;
                 border-bottom-left-radius: 0px;
    }
    .slot-preview h1{
        font-size:20px;
        line-height: 30px;
        letter-spacing: 0.4px;
        text-align:start;
    }
    .play-real-money-btn{
        display:block;
        font-size:13px;
    }
    .slot-info .info-label{
        font-size:16px;
        line-height:24px;
    }
    .slot-info .info-value{
        font-size:17px;
        line-height:25.5px;
    }
    .slot-meta .fun-rating h3{
        font-size:16px;
        line-height:24px;
        letter-spacing:0.32px
    }
}
@media(max-width:460px){
     .iframe-wrapper{
            padding-top:100%;
    }
}


/* Modal Styling */
.modal {
    display: none;
    position: fixed !important;
    top: 0 !important;
    max-width:none !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 1000 !important;
}
#breadcrumbs{
    display:none;
}
.modal-content {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 100%;
    border: 2px solid #83838d;
    animation: fadeIn 0.5s ease;
    margin:auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-content h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.modal-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

.modal-options span {
    flex: 1;
    text-align: center;
}

#age-slider {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(to right, #ff4444 0%, #ffeb3b 50%, #4caf50 100%);
    outline: none;
    opacity: 0.9;
    transition: opacity 0.2s;
    margin-bottom: 30px;
    -webkit-appearance: none;
    appearance: none;
    padding: 0; /* Remove any default padding */
    margin-left: 0; /* Ensure no left margin */
    margin-right: 0; /* Ensure no right margin */
}

/* Adjust the track to extend to the edges */
#age-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #ff4444 0%, #ffeb3b 50%, #4caf50 100%);
    border-radius: 5px;
    border: none;
    margin: 0;
    padding: 0;
}

#age-slider::-moz-range-track {
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #ff4444 0%, #ffeb3b 50%, #4caf50 100%);
    border-radius: 5px;
    border: none;
    margin: 0;
    padding: 0;
}

/* Adjust the thumb to align properly at the edges */
#age-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--thumb-color, #ffeb3b);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: -7.5px; /* Center the thumb vertically (height/2 - track height/2) */
    position: relative;
    z-index: 1;
}

#age-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--thumb-color, #ffeb3b);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}
#confirm-age-btn {
    background: #6196db;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.1s ease, background 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

#confirm-age-btn:hover {
    background: #2261b4;
    transform: scale(1.05);
}

#confirm-age-btn:active {
    transform: scale(0.95);
}
.slot-description {
     font-family: "Source Sans 3", sans-serif;
    margin-top: 82.57px;
    padding: 0 20px;
}

.description-heading {
     color: rgba(29, 59, 105, 1) !important;
    margin-bottom: 19.19px;
    font-weight: 600;
    font-size: 30px;
    line-height: 42px;
    letter-spacing: -1.2px;
}

.description-paragraph {
    font-weight: 400;
    font-size: 16px;
    line-height: 27.2px;
    letter-spacing: 0%;
    margin-bottom: 23px;
    color: rgba(29, 59, 105, 1);
}


/* Стилизация filter-bar */
.stmp-search-bar {
    padding: 12px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    justify-content:center;
}

.search-bar-container {
    flex: 0 0 auto;
    max-width: 280px;
}
.filter-group{
    display: flex;
     align-items: center;
    gap: 8px; /* Small gap between filter elements */
    flex-wrap: nowrap;
}
#filter-modal .filter-group {
    display: block;
    align-items: center;
    gap: 8px; /* Small gap between filter elements */
    flex-wrap: nowrap;
    margin-bottom:24px;
}

.filter-item {
    position: relative;
}

/* Search bar */
.search-bar input {
    width: 100% !important;
    width:250px !important;
    padding: 8px 0px 8px 14px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #1e293b !important;
    background: #ffffff !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.1s ease !important;
}

.search-bar input:focus {
    border-color: #9aa4ba;
    box-shadow: 0 0 0 3px rgb(117 116 137 / 15%);
    outline: none;
    transform: translateY(-1px);
}

.search-bar input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.search-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-31%);
}

.search-icon svg {
    /*width: 16px;*/
    /*height: 16px;*/
    fill: #64748b;
    transition: fill 0.3s ease;
}

.search-bar input:focus + .search-icon svg {
    fill: #4f46e5;
}

/* Filter buttons */
.dropdown-toggle,
.filter-btn,
.reset-button button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.1s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.dropdown-toggle:hover,
.filter-btn:hover,
.reset-button button:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.dropdown-toggle:focus,
.filter-btn:focus,
.reset-button button:focus {
       border-color: #9aa4ba;
    box-shadow: 0 0 0 3px rgb(117 116 137 / 15%);
    outline: none;
}

.filter-btn svg,
.reset-button svg {
    /*width: 14px;*/
    /*height: 14px;*/
    fill: #64748b;
    transition: fill 0.3s ease;
}


.filter-btn:hover svg,
.reset-button button:hover svg {
    fill: #4f46e5;
}






.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    display: none;
    z-index: 1000;
    min-width: 160px;
}

.dropdown-menu li {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #1e293b;
    transition: background 0.2s;
    display:block;
}

.dropdown-menu li:hover {
    background: #f1f5f9;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
}

.modal-dialog {
    max-width: 600px;
    margin: 24px auto;
    padding: 12px;
}

.modal-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
}

.close-modal {
    border: none;
    background: none;
    cursor: pointer;
    padding: 6px;
}

.close-modal svg {
    width: 16px;
    height: 16px;
    fill: #64748b;
}

.filter-modal .filter-group {
    margin-bottom: 24px;
}

.filter-group h3 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.filter-search {
    position: relative;
    margin-bottom: 12px;
}

.filter-search input {
    width: 100%;
    padding: 10px 36px 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
    background: #ffffff;
}

.filter-search svg {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    /*width: 16px;*/
    /*height: 16px;*/
}

.filter-options {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #1e293b;
    cursor: pointer;
}

.filter-options input[type="checkbox"] {
    accent-color: #6366f1;
    width: 16px;
    height: 16px;
}

.range-slider {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.range-slider input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    height: 4px; 
    background: #e2e8f0;
    border-radius: 2px;
    outline: none;
    transition: background 0.2s ease;
    min-width: 80px; 
    padding:0px;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #83838d;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.range-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.range-slider input[type="range"]::-webkit-slider-runnable-track {
    background: #e2e8f0;
}

.range-slider input[type="range"]:hover,
.range-slider input[type="range"]:focus {
    background: #cbd5e1;
}

.range-slider input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25); 
}

.range-slider span {
    min-width: 80px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    padding: 4px 8px;
    border-radius: 4px;
    flex: 0 0 100%; 
    order: 2; 
}

@media (min-width: 769px) {
    .range-slider {
        flex-wrap: nowrap;
    }

    .range-slider span {
        flex: 0 0 auto;
        order: 0;
    }
}

@media (max-width: 768px) {
    .range-slider {
        gap: 6px;
    }

    .range-slider input[type="range"] {
        height: 3px;
    }

    .range-slider input[type="range"]::-webkit-slider-thumb {
        width: 12px;
        height: 12px;
    }

    .range-slider span {
        font-size: 12px;
        padding: 3px 6px;
        margin-top: 4px;
    }
}

.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal-footer button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
}

.apply-filters {
    background: #83838d;
    color: #ffffff;
}

.apply-filters:hover {
    background: #4f46e5;
    transform: translateY(-1px);
}

.reset-filters {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #1e293b;
}

.reset-filters:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.developer-carousel {
    margin-top: 20px;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-items {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-items::-webkit-scrollbar {
    display: none;
}

.carousel-items button {
    padding: 8px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}
button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover{
    color:inherit !important;
}
.carousel-items button:hover,
.carousel-items button.active {
    background: #d9d9dc;
    border-color: #acacc0;
    color: #ffffff;
}

.carousel-arrow {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
}

.carousel-arrow:hover {
    background: #f1f5f9;
    transform: scale(1.05);
}

.carousel-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.loader {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #64748b;
}

@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        gap: 10px;
    }

    .filter-item {
        width: 100%;
        min-width: unset;
        max-width: unset;
    }

    .modal-dialog {
        margin: 16px;
        max-width: 100%;
    }

    .modal-content {
        padding: 20px;
    }

    .carousel-arrow {
        width: 32px;
        height: 32px;
    }
}

.bread{
    margin-left:0px !important;
}
.breadcrumbs {
    margin: 20px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: #999;
}

.breadcrumbs a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumbs li:last-child {
    color: #333;
    font-weight: 500;
}



.similar-slots {
    margin-top: 40px;
    padding: 0px 20px;
}

.similar-slots h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
}


.similar-slots .slot-card img {
    width: 100%;
    height: auto;
    display: block;
}

.similar-slots .slot-card h2 {
    font-size: 16px;
    margin: 10px;
    color: #333;
    text-align: center;
}



/* Developers Button */
.developers-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 19px;
    background: linear-gradient(274deg, rgb(221 208 214) 20%, rgb(170 170 170) 100%);
    border: none;
    border-radius: 40px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-Shadow: 
        -4.5px 4.5px 11.36px 0px rgba(245, 245, 245, 0.25) inset,
        4.5px -4.5px 18.68px 0px rgb(57 136 255) inset;
}

.developers-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.developers-btn svg {
    transition: transform 0.3s ease;
}

.developers-btn:hover svg {
    transform: translateX(4px);
}
#developers-modal .modal-dialog{
    max-width: 1200px !important;
    width: 100%;
}
#developers-modal .modal-content{
    max-width: 1150px !important;
}
.developers-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-height: 500px;
    overflow-y: auto;
    padding: 10px;
}

.developer-item {
    transition: transform 0.2s ease;
}

.developer-item:hover {
    transform: scale(1.03);
}

.developer-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}
.developers-button{
    display: flex;
    justify-content: center;
}
.developer-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.developer-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.developer-card .developer-arrow {
    transition: transform 0.3s ease;
}

.developer-item:hover .developer-arrow {
    transform: translateX(4px);
}

.developer-slots-preview {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    min-height: 50px;
}

.developer-slots-preview img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.developer-slots-preview .no-slots {
    font-size: 14px;
    color: #64748b;
    line-height: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .developers-list {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .developer-card {
        padding: 16px;
    }

    .developer-card h3 {
        font-size: 20px;
    }

    .developer-slots-preview img {
        width: 40px;
        height: 40px;
    }

    .developer-slots-preview .no-slots {
        font-size: 13px;
        line-height: 40px;
    }
}

@media (max-width: 480px) {
    .developers-list {
        grid-template-columns: 1fr;
    }

    .developer-card h3 {
        font-size: 18px;
    }
}

