@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;800&display=swap');

body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #ffcc00;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 10px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Tabla estilos */
#tabla-carros {
    width: 90%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #262626;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.3);
}

#tabla-carros th,
#tabla-carros td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #444;
}

#tabla-carros tr:first-child {
    background-color: #333;
    color: #ffcc00;
    font-weight: bold;
    text-transform: uppercase;
}

#tabla-carros tr:not(:first-child):hover {
    background-color: #2d2d2d;
}

#tabla-carros img {
    width: 100px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}