/* Base Styling */
body {
    font-family: 'Georgia', serif;
    background: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

/* Header */
h1, h2 {
    text-align: center;
    color: #2c3e50;
}

/* Form Styling */
form {
    background: #ffffff;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

form input[type="text"],
form input[type="number"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 150px;
}

form input[type="submit"] {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
    background-color: #2980b9;
}

/* Verse Display */
.verse-block {
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-left: 5px solid #3498db;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.verse-block strong {
    color: #2980b9;
    margin-right: 6px;
    display: inline-block;
    width: 50px;
}

/* Responsive */
@media (max-width: 600px) {
    form {
        flex-direction: column;
        align-items: stretch;
    }
}
