/*
Parent Central [General]
Author: Luis Macias
Last Update: [2025-09-24]
Sendica Education.
 */

.header-image {
    max-height: 3rem;
}

/*PANEL CUSTOM*/

.panel-custom {
    border-bottom: 10px solid var(--accent);
}

/*BUTTON OUTLINE*/

.btn-outline-custom {
    color: var(--accent);
    background-color: transparent;
    border-color: var(--accent);
}

.btn-outline-custom:hover {
    color: #fff;
    background-color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-custom:focus,
.btn-outline-custom.focus {
    box-shadow: 0 0 0 0.2rem var(--accent);
}

.btn-outline-custom.disabled,
.btn-outline-custom:disabled {
    color: var(--accent);
    background-color: transparent;
}

.btn-outline-custom:not(:disabled):not(.disabled):active,
.btn-outline-custom:not(:disabled):not(.disabled).active,
.show>.btn-outline-custom.dropdown-toggle {
    color: #fff;
    background-color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-custom:not(:disabled):not(.disabled):active:focus,
.btn-outline-custom:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-custom.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem var(--accent);
}

/*TEXT CUSTOMS*/
.text-custom {
    color: var(--accent);
}

/* NAVBAR */
.pc-navbar {
    grid-template-columns: 1fr auto 1fr;
    /* izq - centro - der */
    align-items: center;
    min-height: 64px;
}

.pc-left,
.pc-right {
    display: flex;
    align-items: center;
}

.pc-right {
    justify-content: flex-end;
}

.pc-center {
    display: flex;
    justify-content: center;
}

.navbar-brand {
    margin: 0 !important;
}

.header-image {
    height: 48px;
    object-fit: contain;
}

.pc-menu .btn {
    border-radius: .5rem;
}