.oz-like-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: auto px; /* Postavi širinu ako želiš da bude ograničeno */
    margin: 20px auto;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative; /* Dodato da bi se poruka pozicionirala ispravno */
}

.oz-like-btn,
.oz-dislike-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.oz-like-btn {
    background: #28a745;
    color: white;
    margin-right: 10px;
    border: 2px solid transparent;
}

.oz-dislike-btn {
    background: #dc3545;
    color: white;
    margin-left: 10px;
    border: 2px solid transparent;
}

.oz-like-btn:hover {
    background: #218838;
    transform: scale(1.05);
    border: 2px solid #1e7e34;
}

.oz-dislike-btn:hover {
    background: #c82333;
    transform: scale(1.05);
    border: 2px solid #bd2130;
}

.oz-like-count,
.oz-dislike-count {
    margin-left: 10px;
    font-size: 20px;
    font-weight: bold;
}

/* Popravljen izgled poruke */
.oz-vote-message {
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px; /* Pomereno ispod dugmadi */
    display: none;
    z-index: 20;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
