/* Макеты */
.page-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F8FAFB;
  justify-content: center;  
  padding-top: 50px;
}

#main_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.page-content {
  width: 100%;
  max-width: 640px;
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  min-height: auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: max-width 0.3s ease;
}

@media (min-width: 701px) {
  .page-content:has(.timer-panel) {
    max-width: 95%;
  }
}

.page-bottom-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 20px 20px;
  width: 100%;
}

/* Панель таймера */
.timer-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 32px;
  width: 100%;
}

canvas.drawingBuffer {
  display: none !important;
}

@media (max-width: 700px) {
  .page-container {
    min-height: 100vh;
    justify-content: flex-start;
    padding-top: 44px;
  }
  
  .page-content {
    width: 100%;
    max-width: none;
    border-radius: 12px;
    padding: 12px;
    margin: 0 8px;
  }
  
  .page-bottom-area {
    padding: 0 8px 12px;
  }
  
  .timer-panel {
    padding: 0 0 16px;
    gap: 16px;
  }
 }