@font-face {
    font-family: 'Caslon Antique';
    src: url(../fonts/CaslonAntique.ttf) format('truetype');
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Caslon Antique', serif;
    font-size: 1.4rem;
    line-height: 1.1;
}

main {
    flex: 1;
}

.footer {
    margin-top: auto;
}

.dungeon-visualization {
    min-height: 400px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f9fa;
}

/* Add custom styles for form elements */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Form label styles */
label {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Add responsive padding */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Loading spinner modal styles */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);  /* Darker overlay */
    z-index: 1000;
}

.spinner {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Custom button padding */
.btn {
    padding: 0.375rem 0.75rem;  /* Reduced from Bootstrap's default */
    font-size: 1.8rem;
}

.btn-lg {
    padding: 0.5rem 1rem;  /* Reduced from Bootstrap's default */
} 