#barcos_wrapper {
    width: 100%;
    overflow-x: auto;
}

#barcos thead th {
    position: sticky;
    top: 0;
}

#barcos .actions {
    text-align: center;
}

#barcos .actions button {
    margin-left: 5px;
}
.hidden {
    display: none;
}
/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* NOTIFICACIONES */
.notification {
    margin-bottom: 1em;
    padding: 1em;
    border-radius: 5px;
    text-align: center;
}

.notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
