.welcome-section {
    max-width: 900px;
    margin: 1rem auto;
    padding: 1.5rem 2rem;
    background-color: rgba(237, 200, 98, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    color: rgb(208, 5, 5);
    text-align: center;
    font-size: 1rem;
    line-height: 1.1;
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 2rem;
    white-space: pre;
}
.welcome-box{
  max-width: 900px;
  margin: 1rem;
  padding: 1.5rem 2rem;
  background-color: #bbb;  
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  color: rgb(208, 5, 5);
  text-align: center;
  font-size: 1.1rem;
  line-height: 1;
  font-family: 'Fredoka', sans-serif;
  white-space: pre;
}
.game-option {
  margin: 1rem auto;
  padding: 1.5rem 2rem;
  background-color: rgba(205, 209, 231, 0.7);
  border-radius: 10px;
  box-shadow: 10px 10px 10px rgba(255, 255, 255, 0.5);
  color: rgb(22, 2, 2);
  text-align: left;
  font-size: 1rem;
  line-height: 1;
  font-family: 'Fredoka', sans-serif;
  margin-bottom: 1rem;
  white-space: pre;
}

.game-option:hover {
  background-color: #eee;
}
    
.language-selector {
  position: absolute;
  top: 10px;
  right: 10px;
}
.language-btn {
  margin: 0 5px;
  padding: 5px 10px;
  text-decoration: none;
  background: #509cec;
  color: white;
  border-radius: 3px;
}
.language-btn.active {
  color: rgb(218, 217, 217);
  background: #949ba3;
}
.feedback-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0077cc;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1000;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  width: 300px;
  border-radius: 8px;
  text-align: center;
}

.close {
  float: right;
  font-size: 1.5em;
  cursor: pointer;
}

 /* Feedback Section Styles */
.feedback-section {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 2px solid #e9ecef;
}
        
.feedback-title {
    color: #495057;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.feedback-form {
    max-width: 600px;
    margin: 0 auto;
}

.feedback-textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    border: 2px solid #ced4da;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.feedback-textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.feedback-submit {
    margin-top: 15px;
    padding: 12px 30px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.feedback-submit:hover:not(:disabled) {
    background: #218838;
    transform: translateY(-1px);
}

.feedback-submit:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.feedback-message {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

.feedback-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.feedback-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.feedback-loading {
    display: none;
    text-align: center;
    margin-top: 10px;
    color: #6c757d;
}
.column {
  float: left;
  padding: 10px;
  height: 120px;  /*Should be removed. Only for demonstration */
  border: 3px solid #ced4da;
  
}

.left {
  width: 110px;
  align-items: center;
}

.right {
  width: 70%;
  white-space: pre;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
    