/* ==========================================================================
   program search bar in home page
   ========================================================================== */
   
    .psb-wrapper {
        background: white;
        padding: 30px 40px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        max-width: auto;
        margin: 40px auto;
    }
    
    #programs-search-form {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr auto auto;
        gap: 16px;
        align-items: end;
        
    }
    input.psb-input
    {
        border-radius: 8px !important;
    }
        
    
    
    .psb-field {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .psb-label {
        font-size: 14px;
        font-weight: 600;
        color: #1a1a1a;
        text-align: right;
    }
    
    .psb-input,
    .psb-select {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        font-size: 14px;
        font-family: inherit;
        background: white;
        transition: all 0.3s ease;
    }
    
    .psb-input:focus,
    .psb-select:focus {
        outline: none;
        border-color: #132033;
        box-shadow: 0 0 0 3px rgba(19,32,51,0.1);
    }
    
    .psb-input::placeholder {
        color: #999;
    }
    
    .psb-reset {
        padding: 12px 20px;
        background: #f5f5f5;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #666;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .psb-reset:hover {
        background: #ebebeb;
    }
    
    .psb-submit {
        padding: 12px 32px;
        background: #001633;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }
    
    .psb-submit svg {
        width: 18px;
        height: 18px;
    }
    
    .psb-submit:hover {
        background: #C39C6B;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(19,32,51,0.3);
        color: white;
    }
    
    @media (max-width: 1024px) {
        #programs-search-form {
            grid-template-columns: 1fr 1fr;
        }
        
        .psb-field:first-child {
            grid-column: 1 / -1;
        }
        
        .psb-reset,
        .psb-submit {
            grid-column: span 1;
        }
    }
    
    @media (max-width: 640px) {
        .psb-wrapper {
            padding: 20px;
        }
        
        #programs-search-form {
            grid-template-columns: 1fr;
        }
        
        .psb-field:first-child {
            grid-column: 1;
        }
    }