/* main_page.css */

/* Container styles for index.php */
.container {
  background-color: var(--bg);
  padding: 2.5rem;
  border: 2px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--set-dark);
  max-width: 360px;
  width: 100%;
  text-align: center;
  margin: 20px auto;
}

/* Video container */
.video-container {
  max-width: 800px; 
  width: 100%;
  margin: 20px auto;
  text-align: center; 
}

.video-container iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; 
  border: 2px solid var(--set-dark);
  border-radius: 0.5rem;
}

/* Text elements */
h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#status {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  min-height: 1.2em;
}

p {
  line-height: 1.5;
  font-weight: 600;
}

/* Buttons (you can adjust this separately for index if desired) */
button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  background-color: var(--primary);
  border: 3px solid var(--border);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  box-shadow: var(--button);
}

button:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--button-shadow-hover);
  color: var(--bg-contrast);
  font-weight: 700;
}

button:active {
  transform: translateY(1px);
  background-color: var(--primary-active);
  box-shadow: var(--button-shadow-active);
  color: var(--primary-active);
  font-weight: 700;
}


.page-layout {
  display: flex;
  align-items: stretch;        
  min-height: calc(100vh - 100px);
  width: 100%;  
}

.main-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
}
