body {
    font-family:   Arial, sans-serif;
    background-color: #191d21;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #272d33;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

h2 {
    margin-top: 0;
    font-size: 32px;
    font-family:   Arial, sans-serif;
}

form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.crux-select {
    width: 30%;
    margin-bottom: 20px;
}

.crux-select label {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    font-family:   Arial, sans-serif;
}

.crux-select select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #888;
    border-radius: 5px;
    background-color: #272d33;
    color: #fff;
    appearance: none;
    -webkit-appearance: none;
    font-family:   Arial, sans-serif;
}

.crux-select select::-ms-expand {
    display: none;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #ac8f45;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family:   Arial, sans-serif;
}

.submit-btn:hover {
    background-color: #806a33;
}

.result-container {
    margin-top: 30px;
    padding: 20px;
    background-color: #191d21;
    border-radius: 10px;
    text-align: center;
}

.result-title {
    font-size: 25px;
    margin-bottom: 20px;
    font-family:   Arial, sans-serif;
}

.result-numbers {
    font-size: 50px;
    margin-top: 0;
        color: #ac8f45;
    font-family:   Arial, sans-serif;
}

.additional-info {
    margin-top: 30px;
    text-align: center;
}

.additional-info p {
    font-size: 16px;
    font-family:   Arial, sans-serif;
}

.instruction-text {
    margin-top: 20px;
    line-height: 1.5;
    font-family:   Arial, sans-serif;
}

.header-guardian {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    font-family:   Arial, sans-serif;
}

.guardian-section {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.crux-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.warning {
    color: #ff0000;
    text-transform: uppercase;
        font-size: 18px;

}


