/* ====================================
ULTRA COMPACT SUDANADS SEARCH
==================================== */

.sudanads-search-section{

    margin-top:6px;
    margin-bottom:14px;

    padding:8px;

    border-radius:20px;

    border:1px solid #e7f3e8;

    box-shadow:
    0 6px 16px rgba(0,0,0,.04);

    background:
    linear-gradient(
        180deg,
        #fff 0%,
        #fbfdfb 100%
    );

}

/* ====================================
FIELDS
==================================== */

.sudanads-search-section input,
.sudanads-search-section select{

    width:100%;

    height:36px;

    background:#fff;

    border:2px solid #22c55e;

    border-radius:12px;

    padding:0 12px;

    margin-bottom:6px;

    font-size:13px;

    font-weight:700;

    color:#111827;

    box-sizing:border-box;

    box-shadow:
    0 2px 6px rgba(34,197,94,.05);

}

/* ====================================
FOCUS
==================================== */

.sudanads-search-section input:focus,
.sudanads-search-section select:focus{

    border-color:#16a34a;

    box-shadow:
    0 0 0 3px rgba(22,163,74,.08);

}

/* ====================================
PLACEHOLDER
==================================== */

.sudanads-search-section input::placeholder{

    color:#9ca3af;

    font-weight:600;

}

/* ====================================
BUTTON
==================================== */

.sudanads-search-section button,
.sudanads-search-btn{

    width:100%;

    height:38px;

    border:none;

    border-radius:999px;

    background:
    linear-gradient(
        180deg,
        #1cc74f 0%,
        #16a34a 100%
    );

    color:#fff;

    font-size:15px;

    font-weight:800;

    box-shadow:
    0 6px 14px rgba(22,163,74,.18);

    cursor:pointer;

}

/* ====================================
MOBILE
==================================== */

@media(max-width:768px){

    .sudanads-search-section{

        padding:8px;

        border-radius:18px;

    }

    .sudanads-search-section input,
    .sudanads-search-section select{

        height:34px;

        border-radius:10px;

        font-size:13px;

        margin-bottom:6px;

    }

    .sudanads-search-section button,
    .sudanads-search-btn{

        height:36px;

        font-size:15px;

    }

}