/* =====================================================
   RESET & BASE
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =====================================================
   CONTAINER
===================================================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =====================================================
   HEADER
===================================================== */
.header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo img {
    height: 46px;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
}

.nav a {
    color: #0b3c5d;
    margin: 0 14px;
    font-weight: 500;
    position: relative;
}

.nav a::after {
    content: '';
    width: 0;
    height: 2px;
    background: #f4b41a;
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}


/* LOGO + TEXTO */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area img {
    height: 58px; /* más grande */
    width: auto;
}

.logo-text {
    font-size: 22px;
    font-weight: 600;
    color: #0b3c5d;
    letter-spacing: 0.5px;
}

.logo-text strong {
    color: #f4b41a;
    font-weight: 700;
}


/* CTA */
.btn-cta {
    background: #0b3c5d;
    color: #fff !important;
    padding: 7px 18px;
    border-radius: 4px;
    margin-left: 15px;
}

/* ADMIN */
.admin a {
    color: #0b3c5d;
    font-size: 18px;
    margin-left: 10px;
}

.admin a:hover {
    color: #f4b41a;
}

/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 22px;
    color: #0b3c5d;
}

/* =====================================================
   HERO
===================================================== */
.hero-ipd {
    position: relative;
    min-height: 90vh;
    background: url('/assets/img/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-ipd::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(11, 60, 93, 0.88) 35%,
        rgba(11, 60, 93, 0.55) 65%,
        rgba(0,0,0,0.25) 100%
    );
}

.hero-ipd .container {
    position: relative;
    z-index: 2;
}

.hero-ipd-content {
    max-width: 620px;
    color: #ffffff;
    padding: 40px 0;
}

.hero-tag {
    display: inline-block;
    background: #f4b41a;
    color: #1a1a1a;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-ipd h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-ipd h1 span {
    color: #f4b41a;
}

.hero-ipd p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 560px;
}

/* HERO BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #f4b41a;
    color: #1a1a1a;
    padding: 12px 22px;
    font-weight: 600;
    border-radius: 4px;
}

.btn-secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 22px;
    font-weight: 500;
    border-radius: 4px;
}


/* =====================================================
   SECTIONS
===================================================== */
.section {
    padding: 90px 0;
}

.section-light {
    background: #f7f9fb;
}

.section h2 {
    color: #0b3c5d;
    font-size: 32px;
    margin-bottom: 15px;
}

.section p {
    max-width: 800px;
    font-size: 16px;
    line-height: 1.7;
}

/* TITLES */
.section-title {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 10px auto 60px;
}

/* =====================================================
   SERVICES
===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-card i {
    font-size: 42px;
    color: #f4b41a;
    margin-bottom: 20px;
    transition: transform 0.3s ease;

}

.service-card h3 {
    color: #0b3c5d;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}



/* =====================================================
   FOOTER
===================================================== */
.footer {
    background: #0b3c5d;
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    margin-bottom: 15px;
    color: #f4b41a;
}

.footer a {
    color: #ffffff;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.footer a:hover {
    color: #f4b41a;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
}

/* =====================================================
   ANIMATIONS
===================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.9s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.9s ease;
}

.visible {
    opacity: 1;
    transform: translate(0);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {

    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-ipd h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}



/* ===============================
   FOOTER FULL WIDTH
================================ */
.footer-full {
    width: 100%;
    background: #0b3c5d;
    color: #fff;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-col h3 span {
    color: #f4b41a;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #f4b41a;
}

/* ICONOS */
.footer-col i {
    color: #f4b41a;
    margin-right: 1px;
}

/* SOCIAL */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #f4b41a;
    color: #000;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 15px;
    font-size: 13px;
    background: #082f48;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: linear-gradient(
        135deg,
        #0b3c5d,
        #082f48
    );
    color: #fff;
}

.section-alt h2,
.section-alt p {
    color: #fff;
}

.section-highlight {
    background: #f4b41a;
    color: #1a1a1a;
}

.section-highlight h2 {
    color: #0b3c5d;
}


.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.9s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.9s ease;
}

.visible {
    opacity: 1;
    transform: translateX(0);
}

.logo img {
    height: 48px;
    width: auto;
}


@media (max-width: 768px) {
    .logo-text {
        font-size: 18px;
    }

    .logo-area img {
        height: 48px;
    }
}

html {
    scroll-behavior: smooth;
}


/* ===============================
   HERO INTERNO
================================ */
.hero-interno {
    background: linear-gradient(
        135deg,
        #0b3c5d,
        #082f48
    );
    
    color: #ffffff;
    padding: 90px 0;
}

.hero-interno h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-interno p {
    max-width: 600px;
    font-size: 16px;
}

/* ===============================
   TIMELINE
================================ */
.timeline {
    margin-top: 60px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
}

.timeline-item {
    width: 50%;
    padding: 20px 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-year {
    font-weight: 700;
    color: #f4b41a;
    font-size: 18px;
}

.timeline-content h3 {
    margin: 10px 0;
    color: #0b3c5d;
}

/* ===============================
   MISION / VISION
================================ */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.mv-card {
    background: #ffffff;
    padding: 40px;
    border-left: 6px solid #f4b41a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mv-card h3 {
    margin-bottom: 10px;
    color: #0b3c5d;
}

/* ===============================
   VALORES
================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: #ffffff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.value-card i {
    font-size: 36px;
    color: #f4b41a;
    margin-bottom: 15px;
}

.value-card h4 {
    color: #0b3c5d;
}

/* ===============================
   RESPONSIVE TIMELINE
================================ */
@media (max-width: 768px) {

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left;
        padding-left: 20px;
    }
}


/* ===============================
   SERVICIOS AVANZADOS
================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.service-detail.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.service-text h3 {
    color: #0b3c5d;
    font-size: 26px;
    margin-bottom: 15px;
}

.service-text p {
    margin-bottom: 15px;
}

.service-text ul {
    padding-left: 20px;
}

.service-text li {
    margin-bottom: 8px;
}

.service-icon {
    text-align: center;
}

.service-icon i {
    font-size: 80px;
    color: #f4b41a;
}

/* CTA */
.section-cta {
    background: linear-gradient(
        135deg,
        #0b3c5d,
        #082f48
    );
    color: #ffffff;
    text-align: center;
}

.section-cta h2 {
    color: #ffffff;
}

.section-cta p {
    margin: 15px auto 30px;
    max-width: 600px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-icon {
        margin-top: 20px;
    }
}

/* ===============================
   CONTACTO
================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* INFO */
.contact-info h2 {
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 25px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
}

.contact-list i {
    color: #f4b41a;
    margin-right: 10px;
    font-size: 18px;
}

/* FORM */
.contact-form {
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    border-radius: 6px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0b3c5d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}


/* ===============================
   ALERTAS FORMULARIO
================================ */
.alert {
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}

.alert.success {
    background: #e6f4ea;
    color: #1e7e34;
    border-left: 4px solid #28a745;
}

.alert.error {
    background: #fdecea;
    color: #b02a37;
    border-left: 4px solid #dc3545;
}


/* ===============================
   CONFIRMACIÓN CONTACTO
================================ */
.contact-success-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    animation: fadeUp 0.6s ease;
}

.contact-success-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0a2540;
}

.contact-success-box p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 18px;
}

/* ===============================
   LOGIN ADMIN MEJORADO
================================ */
.admin-login {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a2540, #0e4c92);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.login-brand {
    background: #0a2540;
    color: #fff;
    padding: 50px 40px;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.login-brand img {
    max-width: 140px;
    margin-bottom: 25px;
}

.login-brand h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.login-brand p {
    font-size: 15px;
    opacity: 0.9;
}


.login-box {
    padding: 50px 40px;
    width: 55%;
}

.login-box input {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.login-box button {
    width: 100%;
    padding: 14px;
    background: #0a2540;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.login-back {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #0a2540;
    font-size: 14px;
    text-decoration: none;
}

/* ===============================
   HEADER ADMIN
================================ */
.admin-header {
    background: linear-gradient(135deg, #0a2540, #0e4c92);
    color: #fff;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-header .admin-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-header a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
}

.admin-header .danger {
    color: #ffb3b3;
}

.admin-content {
    padding: 30px;
}

/* ===============================
   TABLAS ADMIN
================================ */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.admin-table th,
.admin-table td {
    padding: 14px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.admin-table th {
    background: #f5f7fa;
    font-weight: 600;
}

.estado-nuevo {
    background: #fdf5e6;
}

.estado-leido {
    background: #f9f9f9;
}

.estado-respondido {
    background: #e6f4ea;
}

.btn-sm {
    padding: 8px 14px;
    background: #0a2540;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
}

.btn-sm.success {
    background: #28a745;
}



/* ===============================
   MENSAJE DETALLE
================================ */
.mensaje-box {
    background: #fff;
    padding: 30px;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.mensaje-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

/* ===============================
   CMS FORM
================================ */
.cms-form {
    max-width: 900px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.cms-form label {
    font-weight: 600;
    margin-top: 15px;
    display: block;
}

.cms-form input,
.cms-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid #ccc;
}


/* ===============================
   DASHBOARD ADMIN
================================ */
.admin-subtitle {
    color: #666;
    margin-bottom: 25px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.dashboard-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.dashboard-card.highlight {
    border-left: 5px solid #ffb703;
}

.dashboard-card.success {
    border-left: 5px solid #28a745;
}

.card-number {
    font-size: 34px;
    font-weight: 700;
    display: block;
    color: #0a2540;
}

.card-label {
    font-size: 14px;
    color: #777;
}

.admin-section-title {
    margin: 40px 0 20px;
}


/* ===============================
   MENSAJES ADMIN
================================ */
.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.badge.nuevo {
    background: #fff3cd;
    color: #856404;
}

.badge.leido {
    background: #e2e3e5;
    color: #383d41;
}

.badge.respondido {
    background: #d4edda;
    color: #155724;
}

.admin-card.disabled {
    pointer-events: none;
    opacity: 0.5;
}


/* ===============================
   ACCESOS RÁPIDOS DASHBOARD
================================ */
.quick-access {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.quick-card {
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    text-decoration: none;
    color: #0a2540;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-card i {
    font-size: 30px;
    color: #0a2540;
}

.quick-card span {
    font-size: 18px;
    font-weight: 600;
}

.quick-card small {
    font-size: 13px;
    color: #777;
}

.quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.quick-card.disabled {
    opacity: 0.5;
    pointer-events: none;
}


/* ===============================
   CMS ADMIN
================================ */
.cms-form {
    max-width: 900px;
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.cms-form label {
    font-weight: 600;
    display: block;
    margin-top: 20px;
}

.cms-form input,
.cms-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.cms-form button {
    margin-top: 25px;
    padding: 12px 22px;
    background: #0a2540;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.admin-form {
    max-width: 400px;
    margin-top: 30px;
}

.admin-form input,
.admin-form select,
.admin-form button {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* ===============================
   CONTENEDOR ADMIN
================================ */
.admin-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px;
}


.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}


.admin-table thead {
    background: #f1f4f8;
}

.admin-table tr:hover {
    background: #f9fbfd;
}

.mensaje-box {
    background: #fff;
    padding: 35px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

.admin-form,
.cms-form {
    margin: 0 auto;
}


.dashboard-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.btn-sm {
    padding: 9px 16px;
    font-weight: 500;
    transition: background .3s ease, transform .2s ease;
}

.btn-sm:hover {
    transform: translateY(-2px);
}

/* ===============================
   CONTENEDOR GENERAL ADMIN
================================ */
.admin-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 30px;
}
.admin-table th,
.admin-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.admin-table th {
    text-align: center;
}

.admin-table td {
    text-align: center;
}
