.simple-reviews-slider-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.simple-reviews-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    background-color: rgba(14, 17, 23, 0.6);
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Header sekcija */
.reviews-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 24px;
    visibility: visible !important;
    opacity: 1 !important;
}

.reviews-title {
    font-size: 40px !important;
    font-weight: 700 !important;
    margin-bottom: 6px;
    color:#C5B358 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
}

.rating-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.stars-wrapper {
    display: flex;
    margin-right: 8px;
}

.rating-value {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

/* Link sekcije */
.reviews-count {
    display: flex !important;
    align-items: center;
    font-size: 14px;
    color: white;
    visibility: visible !important;
    opacity: 1 !important;
}

.reviews-link {
    color: #FFD700 !important;
    font-weight: 700 !important;
    margin-left: 4px;
    text-decoration: none;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.reviews-link:hover {
    text-decoration: underline;
}

.reviews-source {
    display: flex !important;
    align-items: center;
    margin-top: 8px;
    font-size: 14px;
    visibility: visible !important;
    opacity: 1 !important;
}

.check-icon {
    color: #10b981;
    margin-right: 4px;
    display: inline-flex !important;
}

.source-link {
    color: #00E676 !important;
    font-weight: 600 !important;
    text-decoration: none;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.source-link:hover {
    text-decoration: underline;
}

/* Slider sekcija */
.reviews-slider {
    position: relative;
    margin: 0 40px;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(14, 17, 23, 0.8);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: rgba(55, 65, 81, 0.9);
}

.prev-button {
    left: -40px;
}

.next-button {
    right: -40px;
}

.reviews-container {
    overflow: hidden;
}

.reviews-row {
    display: flex;
    gap: 16px;
}

/* Kartice recenzija */
.review-card {
    background-color: rgba(24, 28, 38, 0.7);
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: calc(33.33% - 11px);
    flex-shrink: 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Boje inicijala */
.bg-purple-700 { background-color: #7e22ce; }
.bg-blue-600 { background-color: #2563eb; }
.bg-green-600 { background-color: #16a34a; }
.bg-red-600 { background-color: #dc2626; }
.bg-yellow-600 { background-color: #ca8a04; }
.bg-pink-600 { background-color: #db2777; }
.bg-indigo-600 { background-color: #4f46e5; }
.bg-teal-600 { background-color: #0d9488; }

.author-info {
    flex-grow: 1;
    line-height: 1.1 !important;
}

.author-name {
    font-weight: 200 !important;
    margin: 0 0 4px 0;
    color: #FAFAD2 !important;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
    /* Dodato za sve veličine ekrana */
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
}

.review-meta {
    font-size: 10px !important;
    color: #d1d5db !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

.platform-icon {
    margin-left: auto;
}

.google-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: white;
    color: #4285F4;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.review-stars {
    display: flex;
    margin: 8px 0;
}

.review-text {
    font-size: 14px;
    color: #FFFFFF;
    margin: 8px 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    /* Dodato za sve veličine ekrana */
    word-break: break-word;
    hyphens: auto;
}

/* Paginacija */
.pagination-dots {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(75, 85, 99, 0.6);
    margin: 0 4px;
    border: none;
    padding: 0;
    cursor: pointer;
}

.dot.active {
    background-color: white;
}

/* Dodatna pravila za osiguravanje vidljivosti linkova na svim uređajima */
.reviews-count, 
.reviews-link,
.reviews-source, 
.source-link,
.check-icon {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    pointer-events: auto !important;
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    max-width: none !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Poboljšanja za tablete */
@media (min-width: 481px) and (max-width: 1024px) {
    /* Prilagođenje kartica za tablet */
    .reviews-row {
        gap: 12px;
    }
    
    .review-card {
        width: calc(33.33% - 8px);
        padding: 14px;
    }
    
    /* Poboljšanje prikaza teksta */
    .review-text {
        -webkit-line-clamp: 6; /* Dozvoljavamo više redova na tabletima */
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* Inicijali */
    .initials {
        width: 38px;
        height: 38px;
    }
    
    /* Ime autora */
    .author-name {
        font-size: 14px;
    }
    
    /* Meta info */
    .review-meta {
        font-size: 9px !important;
    }
    
    /* Navigaciona dugmad */
    .nav-button {
        width: 32px;
        height: 32px;
    }
    
    .prev-button {
        left: -35px;
    }
    
    .next-button {
        right: -35px;
    }
}

/* Poboljšana responzivna prilagođavanja za mobilne */
@media (max-width: 768px) {
    /* Poboljšanje prikaza recenzija na mobilnim uređajima */
    .simple-reviews-wrapper {
        padding: 16px;
        max-width: 100%;
    }
    
    .reviews-slider {
        margin: 0 10px;
    }
    
    .reviews-row {
        flex-direction: column;
    }
    
    .review-card {
        width: 100%;
        margin-bottom: 16px;
        padding: 12px;
    }
    
    /* Poboljšanje vidljivosti teksta */
    .review-text {
        -webkit-line-clamp: 8; /* Dozvoljavamo više redova na mobilnim */
        font-size: 15px; /* Malo veći font za bolju čitljivost */
        line-height: 1.5;
    }
    
    .nav-button {
        display: none; /* Sakrivamo dugmad za navigaciju */
    }
    
    /* Poboljšanje prikaza inicijala autora */
    .initials {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    /* Poboljšanje prikaza naslova */
    .reviews-title {
        font-size: 24px;
    }
    
    /* Poboljšanje margina i paddinga */
    .reviews-header {
        margin-bottom: 16px;
    }
    
    .pagination-dots {
        margin-top: 16px;
    }
    
    /* Poboljšanje čitljivosti zvezdica */
    .stars-wrapper svg {
        width: 18px;
        height: 18px;
    }
}

/* Dodatna poboljšanja za vrlo male ekrane */
@media (max-width: 480px) {
    .reviews-title {
        font-size: 22px;
    }
    
    .rating-value {
        font-size: 18px;
    }
    
    .reviews-count, .reviews-source {
        font-size: 13px;
    }
    
    .initials {
        width: 32px;
        height: 32px;
    }
}
/* Izmena izgleda Google ikone */
.google-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background-image: url('https://cdn1.iconfinder.com/data/icons/google-s-logo/150/Google_Icons-09-512.png');
    background-size: cover;
    background-position: center;
}

/* Sakrivamo slovo G */
.google-icon span {
    display: none;
}