body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Efecto de sombra */
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-size: 20px;
}

.card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-title {
    font-weight: bold;
    font-size: 22;
}

.card-body {
    background-color: #0d05fc45;
}

.navbar {
    margin-bottom: 20px;
}

footer {
    background-color: #343a40;
    color: #fff;
    padding: 10px 0;
}

.justify-content-start{
    -ms-flex-pack:start!important;
    justify-content:flex-start!important
}
.justify-content-end{
    -ms-flex-pack:end!important;
    justify-content:flex-end!important;
}

.small-button {
    padding: 5px 10px;
    margin-left: 30px;
    font-size: 12px;
    background-color: #4CAF50; /* Color de fondo */
    color: white; /* Color del texto */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.small-button:hover {
    background-color: #45a049; /* Color al pasar el mouse */
}

.table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    text-align: left;
}
.table th, .table td {
    padding: 12px 15px;
}
.table tr:nth-child(even) {
    background-color: #f3f3f3;
}
.table tr:hover {
    background-color: #f1f1f1;
}
.btn-info {
    background-color: #17a2b8;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
}
.btn-info:hover {
    background-color: #138496;
}


