.tms_title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    -webkit-background-clip: text;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
    text-transform: uppercase;
}

.quick-nav-btn {
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.fade-slide {
    animation: slideLeft 0.4s ease-in-out;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.quick-summary-box {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9fafc;
    border-radius: 10px;
    padding: 10px 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    transition: background-color 0.2s;
}

    .summary-row:hover {
        background-color: #f1f5ff;
    }

.summary-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.summary-value {
    font-size: 15px;
    font-weight: 600;
}

.summary-icon {
    font-size: 14px;
    vertical-align: middle;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}

.summary-box {
    background: #f8f9fc;
    padding: 12px 14px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70px;
}

    .summary-box h6 {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 4px;
        color: #343a40;
    }

    .summary-box p {
        margin: 0;
        font-size: 13px;
        color: #6c757d;
        display: flex;
        align-items: center;
        gap: 4px;
    }

.gate-entry-button {
    border: 2px solid #0dcaf0;
    background-color: #e6faff;
    border-radius: 0.6rem;
    box-shadow: 0 2px 4px rgba(13, 202, 240, 0.1);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    max-width: 220px;
}

    .gate-entry-button:hover {
        background-color: #ccf3ff;
        box-shadow: 0 4px 10px rgba(13, 202, 240, 0.25);
        transform: translateY(-1px);
    }

.btn-gate-sub-entry {
    cursor: pointer;
    transition: 0.2s ease-in-out;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    border: 2px solid transparent;
}

    .btn-gate-sub-entry:hover {
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
        border-color: #0dcaf0;
        background-color: #e0f7ff;
    }

/*# sourceMappingURL=custom.min.css.map */
