/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f8;
    color: #333;
    padding: 20px;
}

header {
    background-color: #007BFF;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 24px;
    letter-spacing: 1px;
}

main {
    max-width: 1000px;
    margin: 0 auto;
}

input[type="text"] {
    padding: 10px;
    width: 40%;
    justify-content: center;
    margin: 10px 1%;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

input[type="text"]:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.inputs{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.containerTable {
    margin-top: 20px;
    overflow-x: auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

thead {
    background-color: #007BFF;
    color: white;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
}

tbody tr:hover {
    background-color: #f1f1f1;
}

input[type="date"] {
    padding: 6px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

@media (max-width: 768px) {
    input[type="text"] {
        width: 100%;
        margin: 10px 0;
    }

    th, td {
        font-size: 14px;
    }

    header h1 {
        font-size: 20px;
    }
}
