/* Global Styles */
body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    background-color: #121212; /* Dunkleres Grau für modernen Look */
    overflow-x: hidden;
    color: #E0E0E0; /* Helles Grau für besseren Kontrast */
    margin: 0;
    margin-left: 0px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 100%;
}

/* Header Styles */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #1E1E1E;
    width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

footer{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    max-width: 600px;
}

h1 {
    margin: 0;
    font-size: 2rem;
    color: #FFFFFF;
}

h3 {
    align-self: center;
}

/* Tips Section */
.tips {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 90%;
    margin-top: 20px;
}

/* Understeer and Oversteer Cards */
.under, .entry, .exit {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin: 10px;
    background-color: #1E1E1E;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

/* Flex Containers */
.inner, .understeering, .oversteering, .tires{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

/* Dropdown Selector */
.probselector {
    width: 100%;
    max-width: 400px;
    height: 45px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #1f6aa5;
    border: none;
    border-radius: 8px;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.probselector:hover {
    background-color: #185c91;
    cursor: pointer;
}

select:focus {
    outline-color: #1f6aa5;
    outline-width: 2px;
}

select option {
    background-color: #121212;
    color: #E0E0E0;
    padding: 5px;
}

/* Footer */
footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    padding: 20px;
    width: 100%;
}

/* List Items */
li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .under, .entry, .exit {
        margin: 10px;
        padding: 15px;
        width: 90%;
    }

    .probselector {
        width: 90%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .under, .entry, .exit {
        margin: 10px 5px;
        padding: 10px;
    }

    .probselector {
        font-size: 0.9rem;
        height: 40px;
    }
}