/* like-system.css */
.like-system {
    text-align: center;
}

.like-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 4px 8px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    color: #6c757d;
}

.like-btn:hover {
    background: #e9ecef;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.like-btn.liked {
    background: #fff5f5;
    color: #881337;
    border-color: #fecdd3;
}

.like-btn.liked:hover {
    background: #fecdd3;
    transform: translateY(-1px);
}

.like-btn.processing {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.like-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.like-svg {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.like-btn:hover .like-svg {
    transform: scale(1.1);
}

.like-count {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.like-preview-notice {
    margin-top: 6px;
    color: #6c757d;
    font-style: italic;
    font-size: 11px;
	display: none;
}

/* Notification style */
.like-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-size: 14px;
}