.room-badge {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 10px;
    margin-top: 5px;
    font-weight: bold;
    font-size: 0.9em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-change-room {
    background: none;
    border: none;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.8em;
    opacity: 0.8;
}

.loading-text {
    text-align: center;
    padding: 20px;
}

.error-text {
    color: #ff5e5e;
    text-align: center;
}

.required-star {
    color: #ff5e5e;
}

.textarea-large {
    min-height: 80px;
}

.criteria-label .required-star {
    margin-left: 3px;
}


.success-message {
    background: rgba(114, 231, 60, 0.3);
    border: 1px solid rgba(114, 231, 60, 0.3);
    color: #4caf50;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-message i {
    font-size: 1.2rem;
}
.hide {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.show {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease-in;
}

.alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
    margin-bottom: 10px;
    display: block;
}

.alert.success {
    background-color: #4caf50;
    color: white;
    border-left: 4px solid #45a049;
}

.alert.error {
    background-color: #f44336;
    color: white;
    border-left: 4px solid #da190b;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.alert.removing {
    animation: slideOut 0.3s ease-out forwards;
}
