/* body {
        font-family: Arial, sans-serif;
        color: white;
        text-align: center;
        padding-top: 50px;
    } */
    /* .container {
        width: 500px;
        margin: auto;
        background: rgb(255, 255, 255);
        border: 1px solid #ffffff;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
        text-align: left;
    }
    h2 {
        text-align: center;
        margin-bottom: 20px;
    }
    label {
        font-weight: bold;
        margin-top: 10px;
        display: block;
    }
    select, input[type="text"], textarea, input[type="file"] {
        width: 100%;
        padding: 10px;
        background: #fff9f9;
        border: 1px solid #f6f3f3;
        border-radius: 5px;
        color: white;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    textarea {
        resize: none;
    }
    small {
        color: #888;
    }
    button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
} */

/* Red Button */
.btn-red {
    background-color: #b91c1c;
    color: white;
    width: 100px;
    height: 35px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

.btn-red:hover {
    background-color: #7f1212; 
    transform: scale(1.05);
}

/* Orange Button */
.btn-orange {
    background-color: #d97706;
    color: white;
    width: 100px;
    height: 35px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

.btn-orange:hover {
    background-color: #a75a04;  /* Darker orange */
    transform: scale(1.05);
}

/* Dark Button */
.btn-dark {
    background-color: rgb(108, 23, 23);
    color: white;
    width: 100px;
    height: 35px;
    margin-top: 5px;
    margin-bottom: 10px;
    font-weight: 400; /* corrected from '400px' */
}

.btn-dark:hover {
    background-color: #1a1a1a; /* Darker dark */
    transform: scale(1.05);
}

    .flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }