/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    color: #333;
  }
  
  /* Cabecera */
  .header {
    background-color: white;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
  }
  
  .logo {
    max-width: 100px;
    height: auto;
  }
  
  .user-menu {
    position: relative;
  }
  
  .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  
  .user-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #72BE44;
    object-fit: cover;
  }
  
  .user-name {
    font-size: 16px;
    color: #00468B;
    font-weight: bold;
  }
  
  .dropdown-icon {
    font-size: 14px;
    color: #00468B;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    list-style: none;
    margin-top: 10px;
    width: 200px;
    z-index: 1000;
  }
  
  .dropdown-menu li {
    padding: 10px 20px;
    cursor: pointer;
  }
  
  .dropdown-menu li:hover {
    background: #f7f7f7;
  }
  
  .dropdown-menu a {
    text-decoration: none;
    color: #00468B;
    font-size: 14px;
  }
  
  /* Mostrar menú cuando está activo */
  .user-menu.active .dropdown-menu {
    display: block;
  }
  
  /* Contenido principal */
  .main-content {
    text-align: center;
    padding: 50px 20px;
  }
  
  .results-title {
    font-size: 28px;
    color: #00468B;
    margin-bottom: 20px;
  }
  
  .results-description {
    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
  }
  
  .results-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .result-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: center;
  }
  
  .result-card.correct {
    border: 2px solid #72BE44;
  }
  
  .result-card.incorrect {
    border: 2px solid #FF007B;
  }
  
  .icon-container {
    font-size: 40px;
    margin-bottom: 10px;
  }
  
  .checkmark {
    color: #72BE44;
  }
  
  .crossmark {
    color: #FF007B;
  }
  
  .result-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .score {
    font-size: 32px;
    font-weight: bold;
    color: #333;
  }
  
  .actions {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .retry-button, .download-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .retry-button {
    background: #FF007B;
    color: white;
  }
  
  .retry-button:hover {
    background: #CC0065;
    transform: scale(1.05);
  }
  
  .download-button {
    background: #00468B;
    color: white;
  }
  
  .download-button:hover {
    background: #003366;
    transform: scale(1.05);
  }
  