body {
        font-family: 'Segoe UI', Roboto, sans-serif;
        background: #fefcf7;
        color: #222;
    }

    h3 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #1a202c;
    }

    label strong {
        font-weight: 600;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-control,
    .form-control-range {
        width: 100%;
        padding: 0.5rem;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 6px;
        box-sizing: border-box;
        margin-top: 0.3rem;
    }

    select.form-control {
        background-color: white;
        appearance: none;
    }

    .form-control-range {
        appearance: none;
        height: 6px;
        background: #ddd;
        border-radius: 3px;
        outline: none;
    }

    .form-control-range::-webkit-slider-thumb {
        appearance: none;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #007bff;
        cursor: pointer;
    }

    .form-control-range::-moz-range-thumb {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #007bff;
        cursor: pointer;
    }

    .quote-output {
        display: flex;
        justify-content: space-between;
        font-size: 1.05rem;
        font-weight: 500;
        padding: 0.3rem 0;
        border-bottom: 1px dashed #ddd;
    }

    .quote-output strong {
        font-weight: 600;
    }

    .text-center {
        text-align: center;
        margin-top: 0.3rem;
        font-size: 0.95rem;
        color: #555;
    }

    .btn {
        display: block;
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
        font-weight: 600;
        border: none;
        border-radius: 6px;
        background-color: #007bff;
        color: white;
        cursor: pointer;
        transition: background 0.3s;
    }

    .btn:hover {
        background-color: #0056b3;
    }

    small {
        font-size: 0.9rem;
        color: #555;
    }
    select {
  font-family: 'Segoe UI Emoji', 'Noto Color Emoji', 'Apple Color Emoji', sans-serif;
}




/* Banderas*/
  .country-select {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
  }

  .country-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
  }

  .country-options {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    max-height: 250px;
    overflow-y: auto;
    width: 240px;
    display: none;
    font-size: 14px;
  }

  .country-option {
    padding: 6px 10px;
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
  }

  .country-option:hover {
    background-color: #f0f0f0;
  }

  .country-option hr {
    border: none;
    height: 1px;
    background: #ddd;
    margin: 5px 0;
  }

