body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
}

.button-container {
    margin-top: 20px;
}

.button-container a {
    text-decoration: none;
    color: #ffffff;
    background-color: #ffcc00;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.button-container a:hover {
    background-color: #e6b800;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .button-container a {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

.next-gp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1000px;
    background: linear-gradient(135deg, #1e1e1e, #333);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    overflow: hidden;
    padding: 20px;
    margin-top: -15%;
}

.gp-image {
    width: 40%;
    height: auto;
    object-fit: contain;
    border-radius: 12px 0 0 12px;
}

.next-gp-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 10px 20px;
}

.gp-info {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
}

.gp-name {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.gp-location {
    font-size: 18px;
    color: #bbb;
    font-style: italic;
    margin-bottom: 5px;
}

.gp-date {
    font-size: 20px;
    color: #bbb;
    margin-bottom: 15px;
}

.next-session {
    width: 100%;
    text-align: center;
    border-top: 1px solid #666;
    padding-top: 10px;
}

.session-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ff3c00;
}

.session-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.session-timer {
    font-size: 16px;
    font-weight: bold;
    color: #ff3c00;
    margin-top: 5px;
}

