.loader {
    margin: auto;
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    width: 10px;
    height: 10px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @media screen and (max-width: 600px) {
    .loader {
        width: 20px;
        height: 20px;
        border-width: 3px;
    }
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

input,
select {
    font-size: 16px;
}

.form-container {
    width: 100%;
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

.form-input {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #0056b3;
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #004494;
}

.accepter{
    transform: scale(2.5);
    margin: 20px;
}

.button {
    width: 100%;
    /* Full width on small screens */
    height: auto;
    /* Let the browser calculate the height */
    margin: 5px 0;
    /* 10px top and bottom, 0 left and right */
    background-color: #4CAF50;
    /* Green background color */
    color: white;
    /* White text color */
    padding: 20px 24px;
    /* Top/bottom and left/right padding */
    border: none;
    /* No border */
    border-radius: 4px;
    /* Rounded corners */
    font-size: 16px;
    /* Text size */
    transition: background-color 0.3s;
    /* Smooth transition for hover effect */
}

.button:hover {
    background-color: #45a049;
    /* Darker green color on hover */
}

.dropdownSelect {
    padding: 10px 15px;
    border: 1px solid #e7e7e7;
    /* Light gray border */
    border-radius: 4px;
    /* Slightly rounded corners */
    background-color: white;
    font-size: 16px;
    color: #333;
    /* Dark text color for contrast */
    appearance: none;
    /* Removes default browser styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('downArrow.svg');
    /* Path to a custom arrow image */
    background-repeat: no-repeat;
    background-position: right 10px center;
    /* Position the arrow to the right */
    background-size: 20px;
    /* Set the size of the background image */
    width: 100%;
    /* Full width */
    margin: 2.5px 0;
    /* 5px top and bottom, 0 left and right */
}

/* Style for when the select box is focused */
.dropdownSelect:focus {
    outline: none;
    /* Removes the default focus outline */
    border-color: #000;
    /* Optional: Change border color when focused */
}

.counter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.minus-btn,
.plus-btn {
    background-color: #4CAF50;
    /* Green background */
    color: white;
    border: none;
    box-sizing: content-box;
    /* Width and height only apply to content, not padding/border */
    border-radius: 50%;
    /* Circular border */
    width: 30px;
    /* Width of the buttons */
    height: 30px;
    /* Height of the buttons */
    padding: 0;
    /* Ensure padding isn't affecting the shape */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    font-size: 24px;
    /* Size of the '-' and '+' */
}

.count {
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    width: 50px;
    /* Width of the number display */
    margin: 0 10px;
    /* Spacing between buttons and number display */
    font-size: 16px;
}
