/* Reset básico */
:root {
    --c1: #396398;
    --c2: #7CB8F2;
    --c3: #050834;
    --cx: #040a5a;
    --c4: #D5D5D5;
    --c5: #959595;
    --c6: #5C6972;
}

* {
    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: #35aaf2;
    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 20px;
}

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;
}

#btnBuscar{
    width: 100px;
    height: 35px;
    border-radius: 3px;
    background-color: #35aaf2;
    color: #040a5a;
    border: none;
    cursor: pointer;
}

#btnBuscar:hover{
    background-color: #087bc2;
    color: #fff;
    transition: 0.5s;
}

input[type="text"]:focus {
    border-color: #35aaf2;
    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: 800px;
}

thead {
    background-color: #35aaf2;
    color: white;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
    font-size: 13px;
}

tbody tr:hover {
    background-color: #f1f1f1;
}


@media (max-width: 768px) {
    input[type="text"] {
        width: 100%;
        margin: 10px 0;
    }

    th, td {
        font-size: 14px;
    }

    header h1 {
        font-size: 20px;
    }
}
#cuv{
    width: 100px;

}
.editable:focus{
    border-color: #35aaf2;
    outline: none;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
}