/* =========================
   BUTTON STRUCTURE SYSTEM
   (No color, no animation)
========================= */

/*.ui-btn*/

.ui-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 16px;
}

/* LEFT ICON */
.ui-btn-icon {
    flex: 0 0 auto;
}

/* TEXT AREA */
.ui-btn-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;

    margin: 0 10px;
}

/* TITLE */
.ui-btn-title {
    font-size: 14px;
    font-weight: 600;
}

/* SUB TEXT */
.ui-btn-sub {
    font-size: 12px;
}

/* RIGHT ICON / ARROW */
.ui-btn-action {
    flex: 0 0 auto;
}


/* =========================================
   SEARCH TOGGLE BUTTON STRUCTURE (Circle Type)
   ========================================= */

/* Main Header Container Structure (Zaroori) */
.template-header-box {
    display: flex;
    justify-content: space-between; /* Heading Left mein, Button Right mein */
    align-items: center;            /* Vertically Center */
    padding: 0 15px;                /* Side padding */
    width: 100%;
    margin-bottom: 20px;
}

#templateSection h2 {
    margin-bottom: 0;               /* Reset default margin */
}

/* ===== SEARCH STRUCTURE ===== */

.search-box {
    display: flex;
    align-items: center;
    padding: 0 10px;

    border: 1px solid #ccc;
    border-radius: 20px;
    background: #fff;
}

/* ICON */
.search-box i {
    font-size: 18px;
    margin-right: 8px;
    cursor: pointer;
}

/* INPUT */
.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    margin-top: 15px;
    background: transparent;
}
