/* style.css */
/* body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #2C3639;
    font-family: 'Roboto', sans-serif;
    color: #DCD7C9;
} */

* {
    margin: 0;
    padding: 0;
    font-family: roboto;
    color: #DCD7C9;
    text-decoration: none;
}

body {
    margin: -20px 0px 0px;
    padding: 0;
    height: auto;
    background: #2C3639;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    max-width: 360px;
    padding: 15px;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
    overflow-y: auto;
    border-radius: 8px;
    display: block;
    background: rgb(44,54,57);
    background: linear-gradient(300deg, rgba(44,54,57,1) 0%, rgba(63,78,79,1) 90%);
    width: 90%;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.form {
    padding: 15px;
}

h2 {
    margin-bottom: 20px;
}

label {
    font-size: 18px;
    display: block;
    margin: 10px 0 5px;
    text-align: left;
}

.date{
    max-width: 92%;
}

textarea, select, input[type="number"], input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: transparent;
    color: #DCD7C9;
    box-sizing: border-box;
}

textarea {
    height: 100px;
    resize: none;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-weight: 200;
    font-size: 1em;
    background-color: transparent;
    color: #DCD7C9;
    box-sizing: border-box;
    padding-right: 30px;
    background: url('data:image/svg+xml;charset=US-ASCII,<svg%20xmlns="http://www.w3.org/2000/svg"%20viewBox="0%200%204%205"><path%20fill="%23000"%20d="M2%200L0%202h4z"/></svg>') no-repeat right 10px center;
    background-size: 10px 10px;
}

/* Styling for the options */
select option {
    background-color: #2C3639;
    color: #DCD7C9;
    font-weight: 200;
}

/* Styling for the options when hovered or focused */
select option:hover,
select option:focus {
    background-color: #BF801F;
    color: #FFFFFF;
}

/* Custom scrollbar styling */
select::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

select::-webkit-scrollbar-track {
    background: #2C3639; /* Background of the scrollbar track */
    border-radius: 10px;
}

select::-webkit-scrollbar-thumb {
    background-color: #BF801F; /* Color of the scrollbar thumb */
    border-radius: 10px;
    border: 3px solid #2C3639; /* Padding around the scrollbar thumb */
}

select::-webkit-scrollbar-thumb:hover {
    background-color: #FF9B42; /* Hover color of the scrollbar thumb */
}

select::-webkit-scrollbar-button {
    display: none; /* Hide the buttons at the ends of the scrollbar */
}

/* For Firefox */
select {
    scrollbar-width: thin; /* Make the scrollbar thin */
    scrollbar-color: #BF801F #2C3639; /* Color of the scrollbar thumb and track */
}


.inputsContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-method {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-align: left;
}


.payment-method input {
    width: 25px; /* Increase the size of the radio button */
    height: 25px; /* Increase the size of the radio button */
    margin-right: 10px;
}

button {
    padding: 10px 20px;
    background-color: #BF801F;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #45a049;
}

.total {
    background-color: transparent;
    color: #DCD7C9;
    border: 0px;
    text-align: center;
    font-size: 50px;
    font-weight: 700;
}

.input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #ccc;
    color: #DCD7C9;
    font-size: 20px;
}

.terms {
    text-align: left;
    margin-bottom: 20px;
}

.terms input[type="checkbox"] {
    width: 20px; /* Adjust the width of the checkbox */
    height: 20px; /* Adjust the height of the checkbox */
    margin-right: 10px; /* Add some space between the checkbox and the label */
    vertical-align: middle; /* Align checkbox vertically with the label */
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.7    ); /* Black w/ opacity */
}

.modal-content {
    border-radius: 20px;
    background: rgb(44,54,57);
    background: linear-gradient(300deg, rgba(44,54,57,1) 0%, rgba(63,78,79,1) 90%);
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.text-med{
    font-size: 22px;
}