.post-like-container {
    margin: 20px 0;
    padding: 10px;
}

.like-btn {
    display: inline-flex;
    align-items: center;
    
    padding: 8px 16px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.like-btn:hover {
    background: #006ba1;
}

.like-btn.liked {
    background: #6c757d;
    cursor: not-allowed;
}

.like-count {
    font-weight: bold;
}

.like-message {
    margin-left: 10px;
    color: #dc3545;
}