/* styles-02.css */

body {
    font-family: Arial, sans-serif;
    /* text-align: right; */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 80%; /* Adjust the width as needed */
    margin: 0 auto; /* Center the container horizontally */
    background-color: #fff; /* Set your desired container background color */
    padding: 20px; /* Adjust the padding as needed */
    padding-bottom: 100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Add a box shadow for a visual effect */
    margin-top: 50px; /* Optional: Add margin from the top */
    overflow: auto;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Add your custom styles here */
.section {
    margin: 20px;
}

.header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.columns {
    display: flex;
    justify-content: space-between;
}

.column {
    width: 48%; /* Adjust the width of the columns as needed */
}

.element {
    margin-bottom: 10px;
}

/* Add your preferred standard button and container styles here */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; Optional: Set height for vertical centering */
  }

.standard-button {
    padding: 10px 20px;
    font-size: 13px;
    background-color: #e2e7e2; /* Green background color */
    color: rgb(41, 29, 175); /* White text color */
    font-weight: bold;
    border:2px solid #333; /* Remove border */
    border-radius: 4px; /* Add border-radius for rounded corners */
    cursor: pointer; /* Add cursor pointer on hover */
    /* Add box-shadow for a raised effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 5px; /* Optional: Add margin between buttons */
}

/* Add hover effect */
.standard-button:hover {
  background-color: #777a77; /* Darker green color on hover */
}

/* error */
.error {
    color: red;
}
 
  .button-text {
    text-align: center;
    color: green;
    font-size: xx-large;
  }