body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}
.content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}
.temple-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
h1 {
    text-align: center;
    color: #d35400;
}
.subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 20px;
}
.action-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}
button:hover {
    background-color: #d35400;
}
#offerings, #checkin-status {
    margin-top: 20px;
    text-align: center;
}
.nav-bar {
    display: flex;
    justify-content: space-around;
    background-color: #34495e;
    padding: 10px 0;
    position: sticky;
    bottom: 0;
    width: 100%;
}
.nav-button {
    border: none;
    background: none;
    font-size: 14px;
    color: #ecf0f1;
    cursor: pointer;
    transition: color 0.3s;
}
.nav-button:hover {
    color: #e67e22;
}
#ton-connect {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
