/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    border: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
}

/* Base */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
    color: #333;
}


h2, h3 {
    margin-bottom: 20px;
    color: #222;
}

p {
    margin-bottom: 15px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"],
input[type="password"],
input[type="file"],
select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

button:hover,
.btn:hover {
    background-color: #000000;
}

.btn {
    display: inline-block;
    background-color: #000000;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

th {
    background-color: #000000;
    color: white;
}

tr:hover {
    background-color: #f1f1f1;
}

.mt-20 {
    margin-top: 20px;
}

.text-center {
    text-align: center;
}
