/* Button Styles */

/* Like Button */
.like-btn {
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.like-btn:hover {
    background-color: #f8f9fa;
    border-color: #6c757d;
    transform: scale(1.1);
}

.like-btn.liked {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

.like-btn.liked:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Notification Button */
.notification-btn {
    transition: all 0.3s ease;
}

.notification-btn:hover {
    background-color: #f8f9fa;
    border-color: #6c757d;
    transform: scale(1.05);
}

/* User Dropdown Button */
.user-dropdown-btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 8px 16px;
    min-width: 120px;
    justify-content: space-between;
}

.user-dropdown-btn:hover {
    background-color: #f8f9fa;
    border-color: #6c757d;
    transform: translateY(-1px);
}

/* Newsletter Button */
.newsletter-btn {
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
