.support-main-title {
  font-size: 36px
}

.support-help-group {
  font-size: 30px;
}

.support-help-page {
  font-size: 24px;
}

.form-check-input,
.form-check-label {
    display: inline-block;
    vertical-align: middle;
}
.form-check-item {
    display: block;
}

textarea { resize: none; }

.caja{
    display: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #f2f2f2;
    text-align: center;
    line-height: 50px;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background-color: #f2f2f2;
    text-align: center;
    line-height: 30px;
}

.bigicon {
    font-size: 35px;
    color: #2e6da4;
}


body {
	background-color: #fdfefe; 
}

#wrap {
  
  background-color: #F2F2F2; 
  margin-bottom: 50px;
  margin-top: 50px;
}

label {
    display: block;
    font: 1rem 'Fira Sans', sans-serif;
}

input,
label {
    margin: .4rem 0;
}

/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */

.modal {
display: none;
position: fixed;
z-index: 1000;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: rgba(255, 255, 255, .8) 
            url('/nc_vz_website_statements/static/src/img/ajax-loader.gif') 
            50% 40%  /* Adjust these percentages to position the gif */
            no-repeat;
}

.modal::after {
    content: "Por favor espere mientras se genera la información...";
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%); /* This ensures exact centering */
    font-size: 1.2em;
    color: #333;
}

/* When the body has the loading class, we turn
the scrollbar off with overflow:hidden */
body.loading .modal {
overflow: hidden;   
}

/* Anytime the body has the loading class, our
modal element will be visible */
body.loading .modal {
display: block;
}  

.centered-table {
text-align: center;
}

.centered-table td,
.centered-table th {
text-align: center;
vertical-align: middle;
}

/* Table styles */
.table-bordered {
border-collapse: collapse;
}

.table-bordered thead tr th {
border-bottom: 2px solid #333; /* Darker line for header separation */
padding: 8px 12px; /* Added padding for aesthetics */
background-color: #f7f7f7; /* Light background color for headers */
}

.table-bordered tbody tr td {
border-bottom: 1px solid #e5e5e5; /* Subtler line for row separation */
padding: 8px 12px; /* Added padding for aesthetics */
}

.table-bordered tbody tr:last-child td {
border-bottom: none; /* Removes the border from the last row */
}

.table-title-row th {
font-size: 1.5em;  /* This will make the font 150% of its original size */
font-weight: bold; /* Optional: for added emphasis */
}

.table-bordered thead tr th {
border-bottom: 2px solid #333 !important;
}