/* Likes/Favorites Styles */
.pn-wph-likes-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pn-wph-like-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
    color: #666;
    font-size: 14px;
}

.pn-wph-like-btn:hover {
    background-color: #f8f9fa;
    color: #e91e63;
    transform: scale(1.05);
}

.pn-wph-like-btn-liked {
    color: #8b5a5a;
}

.pn-wph-like-btn-liked:hover {
    color: #6b4a4a;
}

.pn-wph-likes-count {
    font-size: 14px;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.pn-wph-loading {
    animation: heartFloat 1s ease-out forwards;
}

@keyframes heartFloat {
    0% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% { 
        transform: translateY(-30px) scale(1.2);
        opacity: 0;
    }
}

/* Login Popup Styles */
.pn-wph-login-popup-content {
    text-align: center;
    padding: 20px;
}

.pn-wph-login-popup-content h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

.pn-wph-login-popup-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.pn-wph-login-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.pn-wph-login-actions .pn-wph-btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pn-wph-login-actions .pn-wph-btn-primary {
    background-color: #007cba;
    color: white;
    border: 1px solid #007cba;
}

.pn-wph-login-actions .pn-wph-btn-primary:hover {
    background-color: #005a87;
    border-color: #005a87;
}

.pn-wph-login-actions .pn-wph-btn-secondary {
    background-color: transparent;
    color: #007cba;
    border: 1px solid #007cba;
}

.pn-wph-login-actions .pn-wph-btn-secondary:hover {
    background-color: #007cba;
    color: white;
}

/* Like Message Styles */
.pn-wph-like-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
    align-items: center;
    gap: 10px;
    max-width: 300px;
    font-size: 14px;
}

.pn-wph-like-message-success {
    border-left: 4px solid #28a745;
}

.pn-wph-like-message-error {
    border-left: 4px solid #dc3545;
}

.pn-wph-like-message i {
    font-size: 20px;
    flex-shrink: 0;
}

.pn-wph-like-message-success i {
    color: #28a745;
}

.pn-wph-like-message-error i {
    color: #dc3545;
}

.pn-wph-like-message span {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pn-wph-like-message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .pn-wph-login-actions {
        flex-direction: column;
    }
    
    .pn-wph-login-actions .pn-wph-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Disabled state */
.pn-wph-like-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pn-wph-like-btn:disabled:hover {
    background-color: transparent;
    color: inherit;
    transform: none;
} 