/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: rgb(255, 255, 255);
    margin: 20px;
    padding: 20px;
    font-size: large;
   
}

.container {
    margin: 0 auto;
    padding: 20;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 40px;
    text-align: center;
    color: white;
}

.font-red {
    font-size: 60px;
    text-align: center;
    color: rgb(177, 1, 1);
}

.font-red2 {
    font-size: 24px;
    text-align: center;
    color: rgb(177, 1, 1);
}


.redbanner{
    background-color: rgb(177, 1, 1);
    font-size: 18px;
    color: white;
    padding: 10px;
    box-shadow: 10px 10px 5px #aaaaaa;

}

h2 {
    font-size: 24px;
    text-align: center;
    color: grey;
}

.benefits {
    margin-top: 20px;
    color: rgb(137, 132, 132);
}

.benefits h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.benefits ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input[type="file"] {
    padding: 5px;
}

.btn-submit,
.btn-view {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
}

.btn-submit {
    background-color: darkblue;
    color: white;
}

.btn-view {
    background-color: darkgreen;
    color: white;
}

.btn-submit:hover,
.btn-view:hover {
    opacity: 0.8;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 30px;
    text-align: left;
}

table th,
table td {
    padding: 12px;
    border: 1px solid #ddd;
}

table th {
    background-color: darkblue;
    color: white;
    font-weight: bold;
}

/* Alternate Row Colors */
table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:nth-child(odd) {
    background-color: white;
}

/* Row Highlight on Hover */
table tr:hover {
    background-color: #ddd;
    cursor: pointer;
}

/* Image Styling */
table img {
    width: 100px;
    height: auto;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Responsive Styles 
@media (max-width: 768px) {
    .header {
      flex-direction: column;
      align-items: flex-start;
    }
    */

  .responsive{
    display:block;
    margin-left: auto;
    margin-right: auto;
    width:100%;
    max-width: 600px;
    height:auto;
   border-radius: 25px;
   box-shadow:#27516B 10px 10px 10px;
  }