@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    

}
body {
    
    min-height: 100vh;
    overflow-x:hidden;
    background-color: rgb(221, 190, 151);
}

.container {
    /*padding: 10px;*/
    min-width: 375px;
    justify-content: center; /* Horizontal centering */
    align-items: center;     /* Vertical centering */

}

.header {
    

    padding: 10px 10px;

    justify-content: center;
    align-items: center;
    

}

.logo {
padding: 10px;
display: flex;
justify-content: center; /* Horizontal centering */
align-items: center;     /* Vertical centering */
}

.title {
    text-align: center;
    padding: 20px;
}
.navigation {
    padding: 10px;
}
.navigation a {
    text-decoration: none;
    color: #359181;;
    padding: 6px 15px;
    border-radius: 10px;
    
    font-weight: 600;

}

.navigation a:hover, .navigation a.active {
    background: #359181;
    color: #fff;
}

.navigation2 {
    padding: 10px;
   justify-content: center; /* Horizontal centering */
    align-items: center;     /* Vertical centering */
     
}

.navigation2 a {
    text-decoration: none;
    color: #359181;;
    padding: 5px 20px;
    margin: 20px;
    border-radius: 10px;
    
    font-weight: 600;

}

.navigation2 a:hover, .navigation2 a.active {
    background: #359181;
    color: #fff;
}

.menu {
    position: relative;
    padding: 10px 20px;
    background-color:bisque;
    justify-content: center; /* Horizontal centering */
    align-items: center;     /* Vertical centering */
    text-align: center;   
     
}

.menu-logo {
    justify-content: center; /* Horizontal centering */    
}

.menu h3 {
    padding: 10px;

}

.cards {
    padding: 10px 30px;
}

.card {
    background-color: aquamarine;
    border-radius: 7px;
    padding: 50px 30px;
    margin: 10px;
    background-color: bisque;
    box-shadow: 10px 10px 5px #888888;
}

.card:hover {
        background: #359181;
    color: #fff;

}

form {
    width: 100%;
}
.form-control {
    padding: 10px 20px;
    justify-content: center; /* Horizontal centering */
    
}

.form-control h3{
    padding: 20px;
    justify-content: center; /* Horizontal centering */
    align-items: center;     /* Vertical centering */

}

/* Apply to all form controls to ensure consistent sizing */
input, select, textarea {
  box-sizing: border-box;
  width: 100%; /* Or a fixed value like 300px */ 
  /* width: calc(100% - 40px); */
  padding: 5px;
}
.footer {
    padding: 10px;     
    justify-content: center; /* Horizontal centering */
    text-align: center;
}

.result {
    padding: 20px;
    
}

.result_info {
    background-color: #baca72;
    text-align: center;
}
.th-right-align, .td-right-align {
    text-align: right;
    width: 45%;
}
.th-right-align-bold, .td-right-align-bold {
    text-align: right;
    font-weight: bold;
    width: 45%;
}
/* Targets every submit input on the page */
  input[type=submit] {
    background-color: #359181; /* Green background */
    color: white;              /* White text color */
    border: none;              /* Removes default border */
    cursor: pointer;           /* Changes cursor on hover */
  }

  /* Targets specific button using a class */
  .custom-submit {
    background-color: #008CBA; /* Blue background */
  }