/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container styling */
.container {
  text-align: center;
  padding: 20px;
}

/* Logo styling */
.logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 30px;
}

/* Heading styling */
h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

/* Language selector styling */
.language-selector a {
  display: inline-block;
  margin: 0 15px;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  background-color: #007BFF;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.language-selector a:hover {
  background-color: #0056b3;
}

    /* Add this CSS to your styleindex.css or here 4200AD */
    .language-selector {
      display: flex;
      flex-direction: column; /* Stack buttons vertically on mobile */
      gap: 10px; /* This adds space between buttons */
    }
    
    .language-selector a {
      display: block;
      padding: 10px 15px;
      text-align: center;
        color: #fff;
      background-color: #007BFF;
      border-radius: 5px;
      text-decoration: none;
 
      /* Optional: add some styles for better button appearance */
      transition: background-color 0.3s;
    }
    
/* Add to your styleindex.css */
.language-selector a {
  margin: 0 5px;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}    
    
    
    
    .language-selector a:hover {
      background-color: #E95D5C;
    }
    
    /* For larger screens, you might want them horizontal */
    @media (min-width: 768px) {
      .language-selector {
        flex-direction: row;
        justify-content: center;
      }
    }
