/*! Place your custom styles here */
/* Styling pagination */
#pagination {
    margin-top: 30px;
    padding: 20px 0;
}

#pagination button {
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    background-color: #5bc0be; /* Bazna boja */
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#pagination button:disabled {
    background-color: rgba(91, 192, 190, 0.5); /* Manji opacitet za disabled stanje */
    cursor: not-allowed;
}

#pagination button:hover:not(:disabled) {
    background-color: rgba(91, 192, 190, 0.8); /* Mračnija nijansa pri hoveru */
}

/* Zatamnjenje trenutne stranice */
#pagination button.current-page {
    background-color: #4a9e98; /* Tamnija boja za trenutnu stranicu */
    cursor: default; /* Onemogućite klik na trenutnu stranicu */
}

/* Product Price Styling */
.product .product-price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.product .product-price strike {
    color: #888;
    text-decoration: line-through;
}

.product .product-price .discount-price {
    color: #ff6b6b;
    font-weight: bold;
    margin-left: 10px;
    
}
