/* css/empresas.css */

h2 {
    color: white;
    margin-bottom: 15px;
}

.acciones-empresas {
   display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.acciones-empresas input[type="text"] {
    padding: 8px;
    width: 250px;
    border-radius: 4px;
    border: none;
}

.acciones-empresas button {
    background-color: #7289da;
    color: #fff;
    padding: 8px 14px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
}

.acciones-empresas button:hover {
    background-color: #3a5bd1;
}

.tabla-empresas {
    width: 100%;
    border-collapse: collapse;
    background-color: #2c2f33;
    border-radius: 6px;
    overflow: hidden;
}

.tabla-empresas th, .tabla-empresas td {
     padding: 12px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.tabla-empresas th {
     background-color: #23272a;
}

.tabla-empresas tr:nth-child(even) {
    background-color: #2c2f33;
}

.tabla-empresas tr:hover {
     background-color: #3a3d41;
}

.tabla-empresas button {
    background-color: #7289da;
    color: white;
    border: none;
    padding: 6px 10px;
    margin-right: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.tabla-empresas button:hover {
    background-color: #5d6dec;
}
