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

/* Fuente y fondo base */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    color: #333;
}


/* Encabezado superior */
.navbar,
.page-header {
    background-color: #ffffff;
    background: #ffa137;
    color: white;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Enlaces del navbar */
.navbar a,
.page-header a {
    background-color: #404040;
    color: #ffffff !important;
}

/* Botones modernos */
button,
input[type="submit"],
input[type="button"],
.btn,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    height: auto;
    min-height: 10px;
    border: 2px solid #0077cc;
    border-radius: 8px;
    background-color: #00b5e2;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    box-sizing: border-box;
    white-space: nowrap;
}

/* Cuadros de formulario */
input[type="text"],
input[type="password"],
textarea,
select {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 14px;
}

/* Cuadro general / contenedor */
.widget-box,
.table-container {
    background: white;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

/* Tablas */
table.table {
    border-collapse: collapse;
    width: 100%;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
}

table.table th {
    background-color: #e0f0fb;
    color: #005bac;
    padding: 10px;
    text-align: left;
}

table.table td {
    padding: 5px;
    border-bottom: 1px solid #eee;
}

/* Links */
a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Login */
#login-div {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    max-width: 200px; /* Ajusta según el tamaño deseado */
    margin-top: 40px;
}

/* Títulos */
h1, h2, h3 {
    color: #005bac;
    font-weight: 600;
}

td.bugnote-note.bugnote-public {
    text-align: left !important;
    vertical-align: top !important;
}

/* Centrar imagen del logo en login */
div.login-logo {
    text-align: center;
    margin-bottom: 20px;
}

div.login-logo img {
    display: inline-block;
    margin: 0 auto;
    max-width: 3000px; /* Puedes ajustar según el tamaño deseado */
    height: auto;
}
