/* recipe_detail.css */

.blurred-content {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

.login-overlay-container {
    position: relative;
}

.login-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
}

.detail-box {
    background-color: #f8f9fa;
    border-left: 3px solid #007bff;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.star-rating-input {
    direction: rtl;
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-input input[type="radio"] {
    display: none;
}

.star-rating-input label {
    color: #ccc;
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.2s;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
    color: #ffc107;
}

.star-rating-input input[type="radio"]:checked ~ label {
    color: #ffc107;
}

.stat-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    font-size: 1.5rem;
    color: #495057;
}

.stat-text {
    text-align: center;
}
