/* MODAL CUSTOM */
.book-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.book-modal-content {
    background: var(--color-body-bg);
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.book-modal-content h2 {
    margin-bottom: 1rem;
    color: #0d6efd;
}

.book-modal-content input {
    width: 100%;
    padding: 10px;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.btn-login1{
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    margin-top: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-login1:hover {
    background: #0351c6;
    color: #fff;
}

.btn-primary {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 21px;
    width: 100%;
    margin-top: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0351c6;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}