body {
    font-family: Arial, sans-serif;
    background-color: darkorange;
    text-align: center;
    padding: 20px;
    margin: 0;
    box-sizing: border-box;
}

.role-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    width: 80%;
    max-width: 600px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in;
}

.header {
    background-color: orange;
    padding: 10px;
    border-radius: 10px;
    animation: slideInDown 1s ease-out;
}

h1, h3 {
    font-family: sans-serif;
}

.header h1 {
    font-weight: bold;
}

.header p {
    font-family: cursive;
    color: darkblue;
}



.complaint-title {
    font-size: 24px;
    color: darkorange;
    margin: 20px 0;
}


/* Form styling */
form {

    text-align: left;
    width: 95%;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

input[type="text"], textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    transition: border 0.3s ease;
}

input[type="text"]:focus, textarea:focus {
    border-color: #ff8c00;
    outline: none;
    background-color: #fff;
}



button {
    width: 160px;
    padding: 10px;
    margin: 10px;
    font-size: 18px;
    background-color: darkorange;
    border: 2px solid black;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

footer {
    font-family: cursive;
    margin-top: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .role-container {
        width: 90%;
        padding: 15px;
    }

    button {
        width: 100%;
        margin: 5px 0;
    }

    footer {
        font-size: 14px;
    }
}


/* Container to position the buttons */
.language-selector {
    position: fixed; /* Fix the position */
    top: 10%; /* Vertically center */
    left: 0; /* Align to left */
    right: 0; /* Align to right */
    transform: translateY(-50%); /* Center vertically */
    display: flex; /* Use flexbox for alignment */
    justify-content: space-between; /* Space buttons to the left and right */
    padding: 0 -5px; /* Add some horizontal padding */
}

/* Style for the language buttons */
.lang-btn {
    border: 2px solid #ccc; /* Border for the button */
    background-color: #f9f9f9; /* Light background */
    cursor: pointer;
    padding: 5px;
    border-radius: 15px; /* Curved border */
    transform: rotate(0deg); /* Rotate the buttons 90 degrees */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a shadow for a nicer effect */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition on hover */
}

/* Style for the flag images */
.lang-btn img {
    width: 40px; /* Image width */
    height: 30px; /* Image height */
}

/* Hover effect */
.lang-btn:hover {
    transform: rotate(-10deg) scale(1.1); /* Slightly increase size on hover */
    opacity: 0.8; /* Slight transparency on hover */
}

/* Specific styles for each button if needed */
#enButton {
    /* Remove margin and use flexbox to position */
}

#amButton {
    /* Remove margin and use flexbox to position */
}

/* Remove margin from the buttons to ensure they align correctly */
.lang-btn {
    flex: 0; /* Prevent buttons from growing */
}
