
html, body {
    margin: 0;
    padding: 0;
    height: 100vh; /* Ajusta la altura de la pantalla */
    font-family: Arial, sans-serif;
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Estilos para el header y el menú */
header {
    width: 100%;
    background-color: #333;
    padding: 10px 0;
    position: fixed; /* Fijar el header en la parte superior */
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

.nav-item:hover {
    background-color: #444;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-menu li {
    border-bottom: 1px solid #555;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 10px 20px;
    color: white;
}

.dropdown-menu a:hover {
    background-color: #555;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

/* Espaciado para que el contenido no quede detrás del header */
main {
    max-width: 1200px;
    margin: 80px auto 20px; /* Ajustar el margen superior para dejar espacio para el header */
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

/* Estilos para los contenedores de login y recuperación de contraseña */
.login-container,
.forgot-password-container {
    text-align: center;
    background: white;
    padding: 20px;
    display: flex; /* Activar Flexbox */
    flex-direction: column; /* Alinear elementos en columna */
    justify-content: center; /* Centrar verticalmente */
    align-items: center; /* Centrar horizontalmente */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-left: 50%;
    margin-right: 20%;
    margin-top: 15%;
    width: 400px; /* Ancho fijo */
    min-height: 300px; /* Altura mínima para que sean del mismo tamaño */
}

.input-container {
    position: relative;
    width: 100%; /* Usa el espacio completo */
    margin: 10px auto; /* Mantener centrado el contenedor de entrada */
}

.input-container span.icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #333; /* Color gris oscuro o negro */
}

/* Estilos para los inputs */
input[type='token'],
input[type="username"],
input[type="password"],
input[type="email"] { /* Agrupar estilos para todos los inputs */
    display: block;
    padding: 10px 10px 10px 35px; /* Espacio para el ícono */
    width: 100%; /* Ancho total */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Incluye padding y border en el ancho total */
}

/* Estilo del botón */
.login_button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #555; /* Color gris oscuro */
    color: white; /* Color del texto del botón */
    transition: background-color 0.3s; /* Efecto de transición */
}

button:hover {
    background-color: #777; /* Color de fondo al pasar el ratón */
}

/* Estilos para los botones sociales */
.social-login {
    display: flex;
    flex-direction: column; /* Mostrar los botones en columna */
    align-items: center;
    margin-top: 20px;
}

.google-login{
    width: 80%; /* Ajustar el ancho de ambos botones */
    max-width: 300px; /* Limitar el ancho máximo */
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    text-align: center;
}

/* Especificar colores individuales */
.google-login {
    background-color: #4285f4;
    color: white;
}


.forgot-password,
.login-link {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: #202831;
}

.forgot-password:hover,
.login-link:hover {
    text-decoration: underline;
}

.mt-3 {
    margin-top: 20px;
}
/* arreglando el dass */
.main-sidebar {
    background-color: rgb(33, 33, 33) !important;
}

.brand-text {
    margin-left: 20px;
}
.breadcrumb {
    background-color: rgb(64, 63, 63) !important;

    color: white; /* Color del texto del botón */
}


/* Perfil */
.profile-card {
    margin-top: 5% !important;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.profile-principal {
    margin: 0;
    padding: 0;
    height: 100vh; /* Ajusta la altura de la pantalla */
    font-family: Arial, sans-serif;
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
}

.profile-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.profile-info h2 {
    font-size: 24px;
    margin: 10px 0;
    color: #333;
}

.profile-info p {
    color: #555;
    font-size: 14px;
    margin: 5px 0;
}

.profile-info i {
    margin-right: 8px;
    color: #777;
}

.profile-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.profile-actions button:hover {
    background-color: #45a049;
}

/* Estilos para el modal */
.modal-body img {
    max-width: 100%;   /* La imagen nunca será más ancha que el modal */
    height: auto;      /* Mantiene la proporción de la imagen */
    display: block;    /* Asegura que no haya espacios extra alrededor */
    margin: 0 auto;    /* Centra la imagen dentro del modal */
}


/* estilo kendo grid */
tr {
    height: 20px !important;  /* Ajusta el valor según el alto deseado */
}
td {
    height: 10px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;  /* Ajusta el valor según el alto deseado */
    font-size: 12px !important;
}
.k-gantt .k-treelist .k-alt.k-state-selected, .k-gantt .k-treelist .k-alt.k-state-selected>td, .k-gantt .k-treelist .k-state-selected, .k-gantt .k-treelist .k-state-selected td, .k-grid td.k-state-selected, .k-grid td.k-state-selected.k-state-focused, .k-grid tr.k-state-selected, .k-listview>.k-state-selected, .k-marquee-color, .k-scheduler .k-today.k-state-selected, .k-scheduler-layout .k-state-selected, .k-state-selected.k-line {
    background-color: #2a2929 !important;
}

/* switch */
.switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 18px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 18px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: #4CAF50;
  }
  
  input:checked + .slider:before {
    transform: translateX(18px);
  }

  /* Kendogrid exportar */
  .k-grid-excel {
    background-color: #6c757d !important;
    color: white !important;
    border: none;
    padding: 6px 12px;
    font-weight: bold;
    border-radius: 4px;
    height: 23px !important;
    font-size: 10px !important;
    border-radius: 5px !important;
    border-color: #6c757d !important;
  }
  #resultados_reclamos .k-grid-toolbar {
    background-color: #4b545c !important; /* Gris claro tipo Bootstrap */
    padding: 10px;
    border-bottom: 1px solid #1f1e1e;
    height: 25px !important;
  }

  #overlayMultimedia {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;      /* ajusta aquí */
    height: 100%;    /* o el valor que quieras */
    background: #fff;
    z-index: 1050;
    overflow: auto;
    box-shadow: -2px 0 5px rgba(0,0,0,0.3);
  }