/* The Sacred Word - Styling */
.tsw-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Georgia', serif;
    color: #2c3e50;
}

.tsw-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.tsw-header h2 {
    margin: 0;
    font-size: 1.6rem;
    color: #1a252f;
    font-weight: bold;
}

.tsw-controls {
    display: flex;
    gap: 10px;
}

.tsw-controls select {
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #dcdfe6;
    background-color: #fff;
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.tsw-controls select:focus {
    border-color: #3498db;
}

.tsw-content {
    min-height: 250px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.tsw-loading {
    text-align: center;
    padding: 40px;
    color: #7f8c8d;
    font-style: italic;
}

.tsw-verse {
    margin-bottom: 12px;
}

.tsw-verse-num {
    font-weight: bold;
    font-size: 0.85rem;
    color: #c0392b;
    vertical-align: super;
    margin-right: 6px;
}

.tsw-footer-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.tsw-btn {
    padding: 8px 18px;
    border: none;
    background: #34495e;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.tsw-btn:hover:not(:disabled) {
    background: #2c3e50;
}

.tsw-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}
