@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600&family=Signika:wght@600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans', sans-serif;
    color: #4F4F4F;
    background-color: #f4f6f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Signika', sans-serif;
}

.container-1200 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header.header-global {
    background-color: #ffffff;
    border-bottom: 3px solid #AA115C;
    padding: 15px 0;
}

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

.escudo-img {
    height: 80px;
    width: auto;
}

.user-info-box {
    text-align: right;
    font-size: 0.9rem;
}

.user-info-box strong {
    color: #AA115C;
}

/* Botones con colores institucionales exactos */
.btn-teal { background-color: #00C9B7; color: #fff; border: none; padding: 10px 18px; border-radius: 4px; cursor: pointer; font-weight: bold; }
.btn-magenta { background-color: #AA115C; color: #fff; border: none; padding: 10px 18px; border-radius: 4px; cursor: pointer; font-weight: bold; }
.btn-coral { background-color: #FF6E80; color: #fff; border: none; padding: 10px 18px; border-radius: 4px; cursor: pointer; font-weight: bold; }
.btn-amber { background-color: #F9AB3A; color: #fff; border: none; padding: 10px 18px; border-radius: 4px; cursor: pointer; font-weight: bold; }

.btn-teal:hover { opacity: 0.9; }
.btn-magenta:hover { opacity: 0.9; }
.btn-coral:hover { opacity: 0.9; }
.btn-amber:hover { opacity: 0.9; }

footer.footer-global {
    margin-top: auto;
    background-color: #4F4F4F;
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    font-size: 0.85rem;
}

footer.footer-global a {
    color: #00C9B7;
    text-decoration: none;
}

/* Tablas */
table.tabla-custom {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

table.tabla-custom th {
    background-color: #AA115C;
    color: #ffffff;
    padding: 12px;
    text-align: left;
    font-family: 'Signika', sans-serif;
}

table.tabla-custom td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}

/* Layout Pantalla Login */
.login-wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.login-left {
    flex: 1;
    background: url('https://ayuntamientopapantla.mx/img/Turismo/02.jpeg') no-repeat center center;
    background-size: cover;
}

.login-right {
    flex: 1;
    background-color: #6D0940;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.login-logo {
    width: 250px;
    margin-bottom: 20px;
}

.login-title {
    font-size: 1.4rem;
    margin-top: 15px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
    max-width: 350px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

@media(max-width: 768px) {
    .login-wrapper { flex-direction: column; }
    .login-left { height: 250px; }
    .header-content { flex-direction: column; text-align: center; }
    .user-info-box { text-align: center; margin-top: 10px; }
}