/* Plugin Name: Shiksha Quiz Plugin */
/* Description: Custom styles for Hindi education quiz plugin */
/* Author: Abhishek Anand */

body.quiz-body {
    font-family: 'Baloo 2', cursive;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .quiz-container {
    max-width: 700px;
    margin: auto;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }
  
  .quiz-header {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #2E7D32;
    margin-bottom: 20px;
  }
  
  .question-box {
    background: #FFF3E0;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .option {
    display: block;
    background: #E1F5FE;
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .option:hover {
    background: #B3E5FC;
  }
  
  .option.correct {
    background-color: #C8E6C9;
    border-left: 6px solid #4CAF50;
  }
  
  .option.incorrect {
    background-color: #FFCDD2;
    border-left: 6px solid #E53935;
  }
  
  .quiz-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  button {
    font-family: 'Baloo 2', cursive;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: #4CAF50;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  button:hover {
    background-color: #388E3C;
  }
  
  .result-box {
    background-color: #F1F8E9;
    padding: 15px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .result-box .emoji {
    font-size: 30px;
  }
  