/* General Container and Box Styles */
.container-layout {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.container-5 {
    width: 5%;
    padding: 10px;
}

.container-90 {
    width: 90%;
    padding: 10px;
    text-align: left;
}
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: white;

    margin: 0;
    padding: 0;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check input {
    margin-right: 10px;
}

h5.title {
    font-family: 'Roboto', sans-serif; /* Ensure consistent typography */
    font-size: 1.8em; /* Slightly larger font size for prominence */
    font-weight: 600; /* Semi-bold for better readability */
    color: inherit; /* Inherit color from parent container or inline style */
    margin: 0; /* Remove default margin */
    padding: 10px 0; /* Add some vertical padding */
    line-height: 1.3; /* Slightly tighter line-height for compact titles */
}

h2 {
    color:white;
}

h1 {
    color:aqua;
    margin: 0; /* Remove default margin */
    padding: 10px 0; /* Add some vertical padding */
}

h3 {
    font-weight: bold;
    font-size: 16px;
    color: rgba(0,59,64,1);
    font-size: 16px;
    font-family: 'Comfortaa', sans-serif;
   
}

.checkout_table {
    padding: 5px 15px; /* Innenabstand für Abstände zwischen den Spalten */

}

.checkout_table td {
    padding: 5px 15px; /* Innenabstand für Abstände zwischen den Spalten */

}

.btn-buy {
    background-color: #00fff7; /* Farbe des Buttons */
    color: rgba(0,59,64,1);
    padding: 10px 20px;
    margin: 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.btn-buy:hover {
    background-color: #00fff7; /* Farbe des Buttons */
    color: rgba(0,59,64,1);
    transform: scale(1.05);
 
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.form-check-input {
    margin-right: 10px; /* Space between the checkbox and the label */
}

.form-check-label {
    margin: 0; /* Remove any default margin */
}


/* Title Styling */
.title {
    font-size: 1.2em;
    margin: 10px 0;
}


@media (max-width: 768px) {
 
    .container-layout {
        flex-wrap: wrap;
    }

    .container-5, .container-90 {
        width: 100%;
        margin-bottom: 20px;
    }
}