

    h2 {
      color: #0066cc;
      font-size: 16px;
    }

    h3 {
      color: #075971;
      font-size: 114;
    }

    .note{
      color: #e48507;
    }
    
    p{
      color: #054005;
      font-size: 18px;
    }
    .adjective-list li{
      background-color: #f2f2f2;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 15px 12px 5px;
      margin: 0 auto;
    }
    .example {
      color: #ed4816;
      font-weight: bold;
      font-size: 20px;
      margin-top: 40px;
    }

    .rules {
      font-style: italic;
      color: #0b9b0b;
    }

    

    /* Style for the list of adjectives */
    .adjective-list {
      list-style-type: none;
      padding: 0;
    }

    .adjective-list li {
      margin-bottom: 20px;
    }

    .adjective-type {
      font-weight: bold;
      color: #009900;
    }

    .adjective-description {
      margin-left: 20px;
    }

    .adjective-example {
      margin-left: 40px;
      color: #cc0000;
    }

    /* Style for the question words */
    .question-words {
      font-weight: bold;
      color: #023467;
    }

    /* Style for the section about making adjectives feminine */
    .feminine-rules-section {
      margin-top: 30px;
    }

    .feminine-rules {
      font-weight: bold;
      color: #cc0099;
    }

  /* words */
      .rules {
        font-style: italic;
        color: #666;
        font-size: 18px;
        font-weight: 800;
      }
  
      .feminine-rule {
        font-weight: bold;
        color: #905f84;
      }
  
      /* Style for the section about making adjectives feminine */
      .feminine-rules-section {
        margin-top: 30px;
        background-color: #f1f0f0;
        border-radius: 10px;
        box-shadow: 10px 10px 10px;
        padding: 10px;

      }
    
  
      .rule-description {
        margin-left: 20px;
      }
  
      .rule-example {
        margin-left: 40px;
        color: #cc0000;
      }
  
/* Table style */
    table {
      border-collapse: collapse;
      width: 100%;
    }

    th,
    td {
      border: 1px solid #ddd;
      padding: 8px;
      text-align: left;
    }

    th {
      background-color: #f2f2f2;
    }

    /* Hide the "Feminine:" label */
    .feminine-label {
      display: none;
    }

    /* Style for feminine adjectives */
    .feminine {
      color: #970468; /* Light green color for feminine adjectives */
    }

    /* Blinking text */
    @keyframes blink {
      0% {
        opacity: 1;
      }
      50% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }

    .blinking-text {
      animation: blink 3s infinite;
    }


    /* FRENCH */
    .verbContainer {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-bottom: 30px;
  }

  .sentenceContainer {
      width: 48%; /* Two columns on larger screens */
      box-sizing: border-box;
      padding: 20px;
      margin-bottom: 20px;
      border: 1px solid #ddd;
      border-radius: 8px;
      background-color: #fff;
  }

  .french {
      color: #33a8cc; 
  }

 


 .word-list {
  list-style-type: none;
  padding: 0;
}

.word-item {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #e6e6e6;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.word {
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}


.pronunciation {
  color: #555;
}

.translation {
  color: #777;
}


table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

th {
  background-color: #f2f2f2;
}








  /* Media Query for Tablets */
  @media only screen and (max-width: 900px) {
      .sentenceContainer {
          width: 100%; /* Full width on smaller screens */
      }
      body{
        font-size: 16px;
        font-family: Arial, Helvetica, sans-serif;
      scroll-behavior: auto;
      margin:0;
      padding: 0;
  }

/* un.une nd ... */
p.masculine {
  font-weight: bold;
  margin-bottom: 5px;
}

p.masculineExample {
  margin-left: 10px;
}

/* Feminine Nouns */
p.feminine {
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
}

p.feminineExample {
  margin-left: 10px;
}

/* Exceptions */
p.exceptions {
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
}

p.exceptionsExample {
  margin-left: 20px;
}
table {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Two columns on small devices */
}

th, td {
  box-sizing: border-box;
  width: 100%;
}
  }

  .plural {
    font-weight: bold;
    color: #cc3600;
}

.special-cases {
  margin-left: 40px;
  color: #e48507;
}

.article {
  font-weight: bold;
  color: #eba205;
}

span.ipa {
  font-style: italic;
  color: #777;
}

 .code-container {
      width: 100%;
      max-width: 100%;
      margin: auto;
      padding: 0 20px; /* Default horizontal padding */
    }
    
 textarea {
      width: 100%;
      height: 300px;
      padding: 15px;
      font-size: 18px;
      color: #f0f0f0;
      font-family: 'Courier New', monospace;
      border: none;
      outline: none;
      background-color: #064433;
      border-radius: 8px;
      box-shadow:
        -10px 10px 25px rgba(255, 255, 0, 0.6),
        -5px 5px 15px rgba(30, 144, 255, 0.5);
      transition: box-shadow 0.3s ease;
      resize: both; /* Let users resize both horizontally and vertically */
    }
    
    textarea:focus {
      box-shadow:
        -12px 12px 30px rgba(255, 255, 0, 0.75),
        -6px 6px 20px rgba(30, 144, 255, 0.6);
    }

    @media (max-width: 600px) {
      .code-container {
        padding: 0 10px; /* Smaller margin on small screens */
      }

      textarea {
        height: 250px;
        font-size: 14px;
      }
    }
    
    
    
    
.word {
  font-weight: bold;
  color: #ef3863; /* Blue color */
  font-weight: 800;
}

.definition {
  margin-bottom: 15px;
  color: #075e07;
  font-style: italic;
  
}
/* Responsive adjustments using media queries */
@media screen and (max-width: 600px) {
  /* Adjust the width for larger screens */
  textarea {
    width: 50px;
  }
}

@media screen and (min-width: 768px) {
  /* Adjust the height for larger screens */
  textarea {
    height: 200px;
  }
}

.red {
  color: red;
  font-weight: 800;
  font-size: 18px;
}

.green {
  color: green;
  font-weight: 800;
  font-size: 18px;
}
.verb-box {
  border: 1px solid #ddd;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin: 10px;
  display: inline-block;
  width: 45%; /* Two boxes in a row */
  box-sizing: border-box;
}
/* Responsive styling for small screens */
@media (max-width: 600px) {
  .verb-box {
      width: 100%; /* Full width on small screens */
      margin: 10px 0; /* Adjust margin for better spacing */
  }
  .number-box {
    width: 100%; /* Full width on small screens */
    margin: 10px 0; /* Adjust margin for better spacing */
}
}
.number-box {
  border: 1px solid #ddd;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin: 10px;
  display: inline-block;
  width: 30%; /* Three boxes in a row */
  box-sizing: border-box;
}



.ipa {
  margin-left: 10px;
  color: #666;
}

.box {
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width:270px;
  align-items: center;
}

.addition-box {
  width: 40px;
  height: 40px;
  border: 1px solid black;
  display: inline-block;
  text-align: center;
  margin: 5px;
}
.card h2 {
            color: #333;
        }
        .card p {
            color: #555;
        }
        .card ul {
            color: #555;
            padding-left: 20px;
        }


        
        .card {
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
    }
        
        ol {
            list-style-type: decimal;
            padding: 0;
        }
        
            ul {
      list-style-type: none;
      padding: 0;
    }
    li {
      margin: 5px 0;
    }
    .letter-section {
      margin-bottom: 30px;
    }
    
    .example {
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            padding: 10px;
            margin: 5px 0;
            border-radius: 5px;
        }
        pre {
            background-color: #eee;
            padding: 10px;
            border-radius: 5px;
        }
        
        
        .recap {
            background-color: #dff0d8;
            padding: 10px;
            border-radius: 5px;
            font-weight: bold;
        }
        
        
        .section-title {
      color: #555;
      margin-top: 20px;
    }
    
    
     .card p {
      margin: 8px 0;
    }
    .label {
      font-weight: bold;
      color: #34495e;
    }
    
    
    .card-header {
            font-weight: bold;
            margin-bottom: 10px;
        }
        pre {
            background-color: #eee;
            padding: 15px;
            border-radius: 5px;
            overflow-x: auto;
            white-space: pre-wrap;
        }
     
        
  .output {
      background-color: #d4edda;
      border-left: 5px solid #28a745;
      padding: 10px;
      margin-top: 5px;
      font-weight: bold;
      font-family: monospace;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
        
          .sentence-container {
      margin: 20px 0;
      padding: 10px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .sentence-container p {
      margin: 10px 0;
    }

    .french-sentence {
      font-weight: bold;
      font-size: 16px;
    }

    .english-meaning {
      font-style: italic;
      color: #555;
    }
    

    
        