/* Edtools Text-Only Branding CSS */
/* Only replaces text, keeps Frappe's original colors and design */

/* ============================= */
/* HIDE FRAPPE/ERPNEXT BRANDING */
/* ============================= */

/* Hide "Powered by Frappe/ERPNext" links */
.text-muted a[href*="frappe"],
.text-muted a[href*="erpnext"],
footer a[href*="frappe"],
footer a[href*="erpnext"] {
    display: none !important;
}

/* Hide indicator badges that say "Frappe" or "ERPNext" */
.page-card-head .indicator {
    display: none !important;
}

/* ============================= */
/* LOGIN PAGE - REPLACE TEXT */
/* ============================= */

/* Hide the original "Iniciar sesión en Frappe" text */
.page-card-head .page-card-head-title {
    font-size: 0 !important;
    line-height: 0 !important;
}

/* Replace with "Iniciar sesión en Edtools" */
.page-card-head .page-card-head-title::before {
    content: "Iniciar sesión en Edtools";
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    display: block;
    font-weight: 500;
}

/* Hide any subtitle that mentions Frappe */
.page-card-head .text-muted {
    display: none !important;
}

/* Add Edtools subtitle */
.page-card-head::after {
    content: "Sistema de Gestión Educativa";
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 10px;
}

/* That's it! Keep everything else as default Frappe styling */
