* {
  padding: 0px;
  margin: 0px;
}
body {
  padding: 9px;
  background-color: #fff;
  font-family: 'Inter', sans-serif;
}

h1 {
  text-align: center;
}

.title {
    text-align: center;
    height: 20px;
}

.subtitle {
    text-align: center;
    height: 20px;
}

/*http://css-tricks.com/css3-progress-bars*/
.meter {
  height: 20px;
  position: relative;
  margin-bottom: 20px;
  background: #555;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  padding: 10px;
  -webkit-box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
  display: none;
}
.meter > span {
  display: block;
  height: 100%;
  -webkit-border-top-right-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-radius-topright: 8px;
  -moz-border-radius-bottomright: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  -webkit-border-top-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: rgb(43, 194, 83);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgb(43, 194, 83)), color-stop(1, rgb(84, 240, 84)));
  background-image: -moz-linear-gradient(center bottom, rgb(43, 194, 83) 37%, rgb(84, 240, 84) 69%);
  -webkit-box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}
.meter > span:after, .animate > span > span {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(255, 255, 255, .2)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.75, rgba(255, 255, 255, .2)), color-stop(.75, transparent), to(transparent));
  background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
  z-index: 1;
  -webkit-background-size: 50px 50px;
  -moz-background-size: 50px 50px;
  background-size: 50px 50px;
  -webkit-animation: move 2s linear infinite;
  -moz-animation: move 2s linear infinite;
  -webkit-border-top-right-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-radius-topright: 8px;
  -moz-border-radius-bottomright: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  -webkit-border-top-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}
#simpleUpload {
  padding: 39px;
}

.footer{
  float: right;
  padding-right: 39px;
  text-align: center;
}

#dialog-confirm{
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.table-header {
    align-content: center;
    width: 600px;
    padding: 9px;
    font-family: "calibri";
    font-size: 18px;
}

.bg-dark {
  background-color: #fff !important;
}

.nav-link {
  color: #000 !important;
}

/* INICIO de style que estaba en homeClient.html */

        /* Animación para nuevos items */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .new-item {
            animation: fadeIn 0.5s ease-out;
        }
        
        /* Indicador de actualización */
        .updating-indicator {
            position: fixed;
            top: 70px;
            right: 20px;
            background: #17a2b8;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            display: none;
        }
        .updating-indicator.show {
            display: block;
            animation: fadeIn 0.3s ease-out;
        }
/* FIN de style que estaba en homeClient.html */
/* INICIO de style que estaba en historialClient.html */

       .badge-editada { background-color: #28a745; color: white; }
        .badge-revision { background-color: #ffc107; color: #000; }
        .badge-finalizada { background-color: #007bff; color: white; }
/* FIN de style que estaba en historialClient.html */

/* INICIO de style que estaba en clientDictionary Animación para filas que se eliminan */
        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }
        .deleting {
            animation: fadeOut 0.5s ease-out;
            background-color: #f8d7da !important;
        }
/* FIN de style que estaba en clientDictionary.html */
/* INICIO de style que estaba en config.html */

.config-container {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-top: 50px;
            margin-bottom: 50px;
        }
        h1 {
            font-size: 2rem;
            border-bottom: 2px solid #eee;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        .form-group label {
            font-weight: 600;
            color: #495057;
        }
        hr {
            margin: 25px 0;
        }
/* FIN de style que estaba en config.html */
/* INICIO de style que estaba en users.html */
       body {
            background-color: #fff;
        }
        .page-header {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-top: 30px;
            margin-bottom: 30px;
        }
        .page-header h2 {
            margin: 0;
            color: #333;
            font-weight: 600;
        }
        .card {
            border: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .card-header {
            background: white;
            border-bottom: 2px solid #f0f0f0;
            padding: 20px;
        }
        .card-header h4 {
            margin: 0;
            color: #333;
            font-weight: 600;
        }
        /* Fix para dropdowns */
        .table-responsive {
            overflow: visible !important;
        }
        .card-body {
            overflow: visible !important;
        }
        #table {
            margin-bottom: 50px;
        }
        .modal-header {
            background: #007bff;
            color: white;
        }
        .modal-header .close {
            color: white;
            opacity: 0.8;
        }
/* FIN de style que estaba en users.html */
/* INICIO de style que estaba en dictionary.html */

.input-group-text {
            background-color: #007bff;
            color: white;
            border: none;
            font-weight: 500;
        }
.btn:not(.btn-sm) {
    padding: 10px 30px;
}
        .alert {
            border-radius: 8px;
            border: none;
        }
/* FIN de style que estaba en dictionary.html */
/* INICIO de style que estaba en clients.html */
.page-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        #table {
            margin-bottom: 100px;
        }
/* FIN de style que estaba en clients.html */
/* algo de style que estaba en control.html */
        .card {
            margin-bottom: 30px;
        }
        .card-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 20px;
        }
        .card-header.editors {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        .card-header.revisors {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }
        .table {
            margin-bottom: 0;
        }
        .table thead th {
            border-bottom: 2px solid #dee2e6;
            font-weight: 600;
            background-color: #f8f9fa;
        }
        .clickable {
            cursor: pointer;
            transition: background-color 0.2s;
        }
        .clickable:hover {
            background-color: #f8f9fa;
        }
        .expand-child {
            background-color: #f8f9fa;
        }
        .expand-child table {
            margin: 15px;
            width: calc(100% - 30px);
        }
        .fa-star {
            color: #ffc107;
        }
        .fa-star-o {
            color: #dee2e6;
        }
        .btn-view-detail {
            background-color: transparent;
            border: none;
            color: #007bff;
            padding: 5px 10px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-view-detail:hover {
            color: #0056b3;
            background-color: #e7f1ff;
            border-radius: 4px;
        }
        .btn {
            white-space: nowrap;
        }

        .modal-footer .btn {
        min-width: 120px;
        }

#selectorMes {
    min-width: 160px;
    font-size: 16px;
    padding: 6px 10px;
}
.input-group #selectorMes {
    text-align: center;
    min-width: 150px;
    max-width: 180px;
}
.month-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}

.month-nav .btn {
    white-space: nowrap;
    border-radius: 0;
}

.month-nav .btn:first-child {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.month-nav .btn:last-child {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

#selectorMes {
    max-width: 160px;
    min-width: 160px;
    text-align: center;
    border-radius: 0;
}