body { font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto; padding: 20px; }
body.list { max-width: inherit;}
label { display: block; margin-bottom: 5px; }
input, select, textarea { 
    width: 100%; 
    padding: 8px; 
    box-sizing: border-box;
    resize: none;
}
button { 
    padding: 10px 20px; 
    background: #4CAF50; 
    color: white; 
    border: none; 
    cursor: pointer; 
}
button:hover { 
    background: #5ac05d; 
}
button.loading {
    display: none !important;
}

#guardando {
    display: none;
    color: #4CAF50; 
    font-size: 1.3em;
}
#guardando.loading {
    display: block;
}
#guardando span {
    font-size: 0.7em;
    color: #555353;
    display: inline-block;
    margin-left: 0.4em;
    position: relative;
    bottom: 3px;
}

#btn_cancelar {
    background: #cb1313;
    visibility: hidden;
    text-decoration: none;
    color: white;
    font-size: 14px;
    padding: 10px 20px;
}
#btn_cancelar.show {
    visibility: visible;
}
#btn_cancelar:hover {
    background: #cc3232;
}

#titulo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
body.list #titulo {
    justify-content: start;
}
body.list #titulo h1 {
    margin-right: 1em;
}
#titulo a {
    text-decoration: none;
    background-color: #0b9ad7;
    padding: 3px 10px;
    color: white;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: bold;
    min-width: 52px;
}
#titulo a:hover {
    background-color: #23b7f7;
}

h2#provinciaNombre {
    color: #2c3e50;
    margin-bottom: 25px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    text-align: center;
}
body.list h2#provinciaNombre {
    padding: 0;
    background: none;
    text-align: left;
}


#logo_conicet {
    width: 80px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

table th {
    background-color: #f2f2f2;
    font-weight: bold;
}
table tr:hover td {
    background-color: rgb(243, 242, 242);
}

body.list button {
    padding: 0;
    background: none;
    font-size: 1.4em;
}
body.list button.edit-btn, body.list button.lst-btn {
    color: #3fa83f;
}
body.list button.edit-btn:hover, body.list button.lst-btn:hover {
    color: #4ace4a;
}
body.list button.delete-btn {
    color: #ff4f4f;
}
body.list button.delete-btn:hover {
    color: #fd7a7a;
}
body.list button.toggle-btn {
    color: #1588ab;
}
body.list button.toggle-btn:hover {
    color: #4aabc9;
}
body.list button.download-btn {
    color: #ffb300;
}
body.list button.download-btn:hover {
    color: #ffcf5d;
}
body.list button i {
    width: 100%;
}
body.list tr.inactive {
    background-color: #ffe3dc;
}
body.list tr.inactive:hover td {
    background-color: inherit;
}
body.list #orientadorasResumenTable {
    margin-bottom: 1em;
    max-width: 600px;
    visibility: collapse;
}
body.list #orientadorasResumenTable.show {
    visibility: visible;
}
body.list #orientadorasResumenTable tr.total {
    font-weight: bold;
    background-color: #adcedc;
}

#btn_show_resumen {
    color: #8cc5f8;
}
#btn_show_resumen:hover {
    color: #23b7f7;
}
#btn_show_resumen i {
    display: inline;
}
#btn_show_resumen i.flecha {
    font-size: 0.7em;
}
#btn_show_all i {
    display: inline;
}

#btn_show_all {
    color: #0b9ad7;
}
#filtros {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0.5em;
}
#filtros label {
    margin: 0;
}
#filtros select {
    width: inherit;
    background: white;
    border: 3px solid #0b9ad7;
    font-size: 0.9em;
    color: #033348;
    padding: 10px 15px;
}

.form-group {
    margin-bottom: 15px;
}
.form-group i {
    display: none;
}
.form-group.check i.fa-circle-check {
    display: inline-block;
    color: #09a913;
}
.form-group.warning i.fa-triangle-exclamation {
    display: inline-block;
    color: #ef912c;
}
.form-group.loading i.fa-gear {
    display: inline-block;
    color: #00449e;
}
.form-group.error i.fa-circle-xmark {
    display: inline-block;
    color: #ff3b3b;
}
.form-group.check input, 
.form-group.loading input,
.form-group.error input,
.form-group.warning input,
.form-group.check select, 
.form-group.loading select,
.form-group.error select,
.form-group.warning select {
    width: 96%;
}
.form-group.warning input {
    border: 2px solid #ef912c;
}
.form-group.error input {
    border: 2px solid #ff2c2c;
}

.form-group.warning div.error {
    font-size: 0.9em;
    color: #ef912c;
    margin-top: 5px;
}
.form-group.error div.error {
    font-size: 0.9em;
    color: red;
    margin-top: 5px;
}
.form-group.textarea .error {
    display: inline-block;
}
.form-group button > i {
    display: block;
}
.form-group textarea ~ .error,
.form-group .add-row ~ .error {
    display: inline-block;
    margin-left: 0.5em;
}
.form-group .add-row {
    clear: both;
}

@media only screen and (max-width: 575.98px) and (orientation: portrait) {
    .form-group.check input, 
    .form-group.loading input,
    .form-group.error input,
    .form-group.warning input,
    .form-group.check select, 
    .form-group.loading select,
    .form-group.error select,
    .form-group.warning select {
        width: 93%;
    }
}

.form-group-codigo button {
    background: none;
    color: #405da1;
    padding: 0;
    font-size: 1.3em;
    position: relative;
    bottom: 2px;
}
.form-group-codigo button#btn_provincia_codigo_copy {
    color: #09a913;
    margin-left: 0.2em;
}

.form-group-list-group {
    margin-bottom: 25px;
}
.form-group-list-group label {
    width: 50%;
}
.form-group-list-group label span {
    position: relative;
    top: 7px;
}
.form-group-list-group .icon-btn {
	background: none;
	color: #078d10;
	padding: 5px 7px;
	font-size: 0.9em;
	border: 1px solid #09a913;
    float: right;
    margin-bottom: 0.5em;
}
.form-group-list-group .icon-btn i {
    display: inline-block;
    color: #09a913;
}
.form-group-list-group .icon-btn:hover {
    background: #09a913;
    color: white;
}
.form-group-list-group .icon-btn:hover i {
    color: white;
}
.form-group-list-group input,
.form-group-list-group.form-group.error input,
.form-group-list-group.form-group.check input {
    width: 50%;
}
.form-group-list-group button {
    padding: 8px 9px;
}
.form-group-list-group .item-editable {
    margin-bottom: 5px;
}
.form-group-list-group .btn-delete {
    background: none;
    color: #ff3b3b;
}
.form-group-list-group .btn-delete:hover {
    background: none;
    color: red;
}
.form-group-list-group .nueva-orientadora,
.form-group-list-group .nuevo-jardin {
    margin-bottom: 0.5em;
    display: block;
}
.form-group-list-group.form-group.check i.fa-circle-check {
    display: none;
}

/**************************\
  Código
\**************************/

.codigo #evaluationForm {
    margin-top: 2em;
}

.codigo .form-group label {
    text-align: center;
}

.codigo .form-group input {
    font-size: 5em;
    width: 5em;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.codigo button {
    margin: 0 auto;
    display: block;
}

.codigo #guardando {
    text-align: center;
}

.cuatrocientoscuatro h1 {
    font-weight: normal;
    font-size: 1.3em;
    line-height: 2em;
    text-align: center;
    width: 100%;
}

/**************************\
  Login
\**************************/

body.login button {
    display: block;
    margin: 1em auto;
}

/**************************\
  Add campania
\**************************/

body.add_campania textarea {
    height: 15em;
}

body.add_campania input.codigo {
    border: 0;
    font-size: 1.5em;
    padding: 0;
    margin-bottom: 1em;
    font-family: mono;
    width: 3em;
}

/**************************\
  Basic Modal Styles
\**************************/

.modal {
    font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
  }
  
.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__container {
    background-color: #fff;
    padding: 30px;
    max-width: 500px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #00449e;
    box-sizing: border-box;
}

.modal-success .modal__title {
    color: #09a913;
}
.modal-error .modal__title {
    color: #a90909;
}

.modal__close {
    background: transparent;
    border: 0;
}

.modal__header .modal__close:before { content: "\2715"; }

.modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0,0,0,.8);
}

.modal__btn {
    font-size: .875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #e6e6e6;
    color: rgba(0,0,0,.8);
    border-radius: .25rem;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.modal__btn-primary {
    background-color: #00449e;
    color: #fff;
}

.modal-success .modal__btn-primary  {
    background-color: #09a913;
}
.modal-error .modal__btn-primary  {
    background-color: #a90909;
}

/**************************\
Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes mmslideIn {
from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}