/* Style for form wrapper */
.wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
/* Style for the logo or title */
header h1 {
    margin: 0; /* Remove default margin */
}

/* Style for the navigation menu */
nav ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

nav ul li {
    display: inline; /* Display menu items horizontally */
    margin-right: 20px; /* Spacing between menu items */
}

nav ul li:last-child {
    margin-right: 0; /* Remove margin for the last menu item */
}

nav ul li a {
    color: #fff; /* Menu item text color */
    text-decoration: none; /* Remove underline from links */
}

nav ul li a:hover {
    text-decoration: underline; /* Add underline on hover */
}
/* Style for form headings */
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Style for form labels */
label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Style for form input fields */
.form-control {
    width: 70%;
    padding: 10px;
    margin-bottom: 15px;
    margin-left: 20px;
    margin-right: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Style for form input fields with error */
.form-control.has-error {
    border-color: #ff0000;
}

/* Style for error messages */
.help-block {
    color: #ff0000;
    font-size: 14px;
    margin-top: 5px;
}

/* Style for form buttons */
.btn {
    width: 10%;
    text-align: center;
    margin: auto;
    padding: 10px 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    
}
/* Style for form buttons on hover */
.btn:hover {
    background-color: #0056b3;
}

.btn-second{
    width: 50%;
    text-align: center;
    margin: auto;
    padding: 10px 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    
}

/* Style for form buttons on hover */
.btn-second:hover {
    background-color: #0056b3;
}

/* Style for link text */
p a {
    color: #007bff;
    text-decoration: none;
}

/* Style for link text on hover */
p a:hover {
    text-decoration: underline;
}

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    
}

/* Style for the header */
header {
    background-color: #947f65; /* Header background color */
    color: #fff; /* Header text color */
    padding: 20px; /* Padding around header content */
    box-shadow: inset;
}

/* Style for the logo or title */
header h1 {
    margin: 0; /* Remove default margin */
}

/* Style for the navigation menu */
nav ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

nav ul li {
    display: inline; /* Display menu items horizontally */
    margin-right: 20px; /* Spacing between menu items */
}

nav ul li:last-child {
    margin-right: 0; /* Remove margin for the last menu item */
}

nav ul li a {
    color: #fff; /* Menu item text color */
    text-decoration: none; /* Remove underline from links */
}

nav ul li a:hover {
    text-decoration: underline; /* Add underline on hover */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #f5f5f5;
}
