#disagreeButton {
    color: red;
    border: 1px solid rgba(255, 0, 0, 0.7);
    background: none;
    transition: background-color 0.3s, color 0.3s;
}

#disagreeButton:hover {
    background-color: red;
    color: white;
}

.button-group {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    width: 100%;
}

@media (max-width: 576px) {
    .button-group {
        flex-direction: column-reverse;
    }
    .button-group .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .button-group .btn:last-child {
        margin-bottom: 0;
    }
}
.modal-body {
    color: black; /* Change text color to black for visibility */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 20px;
}

form {
    max-width: 650px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.hidden {
    display: none;
}

.close-button {
    background: none;
    border: none;
    color: red;
    font-size: 24px;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
