.pld-buttons-container {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pld-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    outline: none;
}

.pld-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pld-button.pld-like {
    border-color: #4CAF50;
    color: #4CAF50;
}

.pld-button.pld-like:hover {
    background: #4CAF50;
    color: #fff;
}

.pld-button.pld-like.voted {
    background: #4CAF50;
    color: #fff;
}

.pld-button.pld-dislike {
    border-color: #f44336;
    color: #f44336;
}

.pld-button.pld-dislike:hover {
    background: #f44336;
    color: #fff;
}

.pld-button.pld-dislike.voted {
    background: #f44336;
    color: #fff;
}

.pld-icon {
    font-size: 20px;
    line-height: 1;
}

.pld-count {
    font-size: 18px;
    min-width: 30px;
    text-align: center;
}

.pld-message {
    margin-left: 10px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.pld-message.success {
    color: #4CAF50;
}

.pld-message.error {
    color: #f44336;
}

.pld-comment-display {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #2196F3;
    background: #fff;
    border-radius: 25px;
    border: 2px solid #ddd;
}

.pld-comment-display .pld-icon {
    font-size: 20px;
}

.pld-comment-display .pld-count {
    font-size: 18px;
    min-width: 30px;
    text-align: center;
}

@media (max-width: 600px) {
    .pld-buttons-container {
        justify-content: center;
    }
    
    .pld-button {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .pld-comment-display {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .pld-icon {
        font-size: 18px;
    }
    
    .pld-count {
        font-size: 16px;
    }
}
