/* Temporary modal styles matching theme */

/* Modal overlay */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    
    overflow: auto;
    
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

/* Modal content container */
.modal-content {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    
    margin: 10% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    
    font-family: 'Times New Roman', Times, serif, 'Noto Serif Thai', 'Noto Serif';
}

/* Modal header styling */
.modal-content h2 {
    color: var(--gold-tone-3-color);
    font-weight: bold;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    
    background: linear-gradient(90deg, var(--ice-color) 0%, var(--fire-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modal text styling */
.modal-content p,
.modal-body {
    color: var(--gold-tone-3-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.modal-body p {
    margin: 0 0 15px 0;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

/* Modal footer */
.modal-footer {
    margin-top: 20px;
    text-align: right;
    padding-top: 15px;
    border-top: 1px solid var(--gold-tone-1-color);
}

/* Modal buttons */
.modal-footer button {
    background: var(--gold-tone-3-color);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.modal-footer button:hover {
    background: linear-gradient(90deg, var(--ice-color) 0%, var(--fire-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive design */
@media (max-width: 1420px) {
    .modal-content {
        margin: 20% auto;
        width: 85%;
        padding: 20px;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-content p {
        font-size: 1rem;
    }
}
