body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #121212;
    color: #ffffff;
}

.container {
    display: flex;
    width: 100vw;
    height: 100vh;
    background-color: #1e1e1e;
    overflow: hidden;
}

.left-column, .right-column {
    flex: 1;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.time-box, .info-block, .prayer-times-container > div {
    margin-bottom: 2vh;
    padding: 2vh;
    border: 1px solid #333;
    border-radius: 10px;
    background-color: #2c2c2c;
}

.time-box {
    font-size: 10vw;
    font-weight: 700;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    min-height: 35%;
}

.info-block {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.date-text {
    font-size: 3vw;
    margin-bottom: 2vh;
    font-weight: 400;
}

.hadith-text {
    font-size: 2.2vw;
    line-height: 1.5;
    flex: 1;
    overflow-y: auto;
    margin-bottom: 2vh;
    font-weight: 400;
}

.masjid-name {
    font-size: 3vw;
    font-weight: 700;
    text-align: center;
}

.right-column h2 {
    text-align: center;
    margin-bottom: 2vh;
    font-size: 4vw;
    font-weight: 700;
}

.prayer-times-container {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    flex: 1;
    overflow-y: auto;
}

.prayer-times-container > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vh;
    font-size: 3vw;
}

.prayer-times-container > div span:first-child {
    font-weight: 700;
}

/* Scrollbar styling for Webkit browsers */
::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-track {
    background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}