/* Reset default styles */
* {
    margin: 2;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #f4f7fc;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

/* Center the logo */
.wrap img {
    max-width: 180px;
    margin: 20px auto;
    display: block;
}

/* Main container styling */
.wrap {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 40px;
    transition: all 0.3s ease-in-out;
}

.wrap:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Heading Styles */
h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #16a085;
}

/* Section headers */
h2, h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2980b9;
}

/* Style for unordered lists */
ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

ul li {
    font-size: 1rem;
    margin: 10px 0;
    line-height: 1.5;
}

/* Link Styles */
a {
    color: #2980b9;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #16a085;
}

/* Forms */
input[type="text"], input[type="submit"], select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 10px 0;
    font-size: 1rem;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #2980b9;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #16a085;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 1rem;
}

table th {
    background-color: #2980b9;
    color: white;
    text-transform: uppercase;
}

table td {
    background-color: #f9f9f9;
}

table tr:nth-child(even) td {
    background-color: #f1f1f1;
}

table td button {
    background-color: #e74c3c;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

table td button:hover {
    background-color: #c0392b;
}

/* Add responsiveness */
@media (max-width: 768px) {
    .wrap {
        padding: 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2, h3 {
        font-size: 1.2rem;
    }

    table th, table td {
        font-size: 0.9rem;
    }
}
