
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body{
    background: url('../img/sfondo.jpg') repeat-y center center/cover;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

.navbar-transparent {
    background-color: transparent !important;
    border: none;
    height: 80px;
}

.text-white {
    color: white !important;
}

.full-width {
    width: 100%;
}

.container {
    background: url('../img/sfondo.jpg') repeat-y center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 62px); /* Subtract the height of the footer */
    max-width: 100%; /* Ensure the container is full width */
}

.form-step {
    width: 100%; /* Full width */
    min-height: 300px; /* Set a minimum height for consistency */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.btn {
    border-radius: 18px; /* Rounded borders */
    margin: 4px; /* Add some space between buttons */
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #f7d274 !important; /* Background color for "Avanti" buttons */
    color: #001227 !important; /* Text color for "Avanti" buttons */
    border-color: #f7d274 !important; /* Border color for consistency */
    min-width: 130px; /* Set a minimum width for consistency */
}

.btn-secondary {
    background-color: #648f9f !important; /* Background color for "Indietro" buttons */
    color: #fff !important; /* Text color for "Indietro" buttons */
    border-color: #648f9f !important; /* Border color for consistency */
    min-width: 130px; /* Set a minimum width for consistency */
}

.form-control {
    color: #fff;
    background-color: #648f9f;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.form-control:focus {
    color: #fff;
    background-color: #648f9f;
    border: 1px solid #f7d274;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

h6{
    color: #f7d274;
}

.category-card {
    cursor: pointer;
    border-radius: 18px;
    transition: background-color 0.3s ease;
}

.category-card:hover {
    background-color: #f7d274;
}

.category-card.selected {
    background-color: #f7d274;
}

.card-title {
    color: #001227;
    font-weight: bold;
}

.card-text {
    color: #000;
}

.footer {
    background-color: #001227;
    color: #fff;
    height: 50px;
    padding: 0 20px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.footer-block {
    flex: 1; /* Allow each block to take up equal space */
    text-align: center; /* Center text within each block */
}

.footer-block img {
    max-height: 40px;
}

.location-card {
    cursor: pointer;
    border-radius: 18px;
    transition: background-color 0.3s ease;
}

.location-card:hover {
    background-color: #f7d274;
}

.location-card.selected {
    background-color: #f7d274;
}

.location-card .card-title {
    text-align: center;
}


.step-indicator {
    width: 30px;
    height: 30px;
    margin: 0 10px;
    background-color: #ccc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-indicator.active {
    background-color: #f7d274;
}

#uniqueCode {
    color: #f7d274;
    font-weight: bold;
    display: block;
    text-align: center;
    padding: 5px 12px;
    border: 1px solid;
    border-radius: 50px;
    font-size: 1.3rem;
    margin-top: 6px;
    min-width: 160px;
}

.time-card {
    cursor: pointer;
    border-radius: 18px;
    transition: background-color 0.3s ease;
}

.time-card:hover {
    background-color: #f7d274;
}

.time-card.selected {
    background-color: #f7d274;
}