/* styles.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2 {
    color: #1a5f7a;
}

img {
    max-width: 100%;
    height: auto;
}

.image-caption {
    font-style: italic;
    text-align: center;
    margin-top: 5px;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

a {
    color: #1a5f7a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.ritual-image {
    max-width: 200px;
    height: auto;
}

@media (max-width: 600px) {
    table, tr, td {
        display: block;
    }
    
    td {
        border: none;
        position: relative;
        padding-left: 50%;
    }
    
    td:before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
    }
}
