.lac-course-duration-wrapper {
    margin: 20px 0;
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 12px;
    background-color: #f9f9f9;
    max-width: 400px;
  }
  
  .lac-course-duration-wrapper label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
  }
  
  .lac-course-duration-wrapper select {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #bbb;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .lac-course-duration-wrapper select:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.2);
    outline: none;
  }

.variation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.variation-card {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.variation-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.variation-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.add-to-cart-button {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.add-to-cart-button:hover {
    background: #005d8f;
}


  