<?php
header('Content-Type: text/css; charset=utf-8');
?>
.favorite-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    z-index: 2;
}

.favorite-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.favorite-btn i {
    font-size: 1.2rem;
    transition: all 0.2s;
}

.favorite-btn i.far {
    color: #6c757d;
}

.favorite-btn i.fas {
    color: #dc3545;
}

.favorite-btn.active {
    background: #fff5f5;
}

.favorite-btn.active i {
    color: #dc3545;
}

/* Toast Styles */
.toast-container {
    z-index: 1050;
}

.toast {
    min-width: 250px;
    background-color: white;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.toast.bg-success {
    background-color: #28a745 !important;
}

.toast.bg-info {
    background-color: #17a2b8 !important;
}

.toast.bg-error {
    background-color: #dc3545 !important;
}

.toast-body {
    padding: 0.75rem 1rem;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .favorite-btn {
        width: 30px;
        height: 30px;
    }

    .favorite-btn i {
        font-size: 1rem;
    }
} 