body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    background: linear-gradient(to right, <?php echo $currentColor; ?> 50%, white 50%);
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.top-section{
    display: flex;
    flex: 1;
	background: black;
    flex-direction: column; /* Plaats de items boven elkaar */
    /*align-items: flex-end;  Tekstblokken uitlijnen aan de rechterkant */
}

.bottom-section {
    background: #f9f9f9;
    padding: 20px;
    display: flex;
    flex-direction: row; /* Horizontaal verdelen */
    flex: 1;
	background: black;
}

.right-section {
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex: 1; /* Gelijk verdelen horizontaal */
    flex-direction: column;
    align-items: center; /* Verticaal centreren van de inhoud */
}

.left-section {
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex: 1; /* Gelijk verdelen horizontaal */
    flex-direction: column;    
    align-items: center; /* Verticaal centreren van de inhoud */
}       

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo {
    max-width: 50%;
    height: auto;
    max-height: 100%;
}

.current-date-large, .current-time-large, .countdown {
    font-size: 48px;
    text-align: center;
    font-weight: bold;
}

.start-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-top: 20px; /* Ruimte boven de knop */
}

.additional-text{
    color: white;
    font-size: 10px;
	display: block;
	flex-direction: column; /* Horizontaal verdelen */
    align-items: center;
	margin-bottom: 5px; /* Ruimte toevoegen tussen de tekstblokken */
}

#startButton {
    font-size: 24px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#startButton:hover {
    background-color: #0056b3;
}

/* styles for desktop devices */
@media only screen and (min-width: 992px) {
  body {
    font-size: 16px;
    width: 100%;
    margin: auto;
  }
}

/* styles for tablet devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    font-size: 14px;
    width: 100%;
    margin: auto;
  }
}

/* styles for mobile devices */
@media only screen and (max-width: 767px) {
  body {    
    width: 100%;
	height: 100%;
    margin: 0;
	align-items: center;
  }
  // Zorgt ervoor dat de tekst van de onderste twee secties op het scherm van een mobiel past.
  .current-date-large, .current-time-large, .countdown {
	width: 100%;
  }
  .container {
    width: 100%;
  }
  .left-section, .right-section, .bottom-section {
    width: 90%;
	flex-direction: column; /* Horizontaal verdelen */
    align-items: center;
  }
}

