.btn-primary {
    background-color:#053534 !important;
    border-color :#053534 !important;

}
.search-header {
    border-color :#053534 !important;
}

.icon-area i {
    color : #053534 !important;
}
.text-primary {
    color : #053534 !important;
}
.btn-outline-primary {
    border-color: #053534 !important;
    color:#053534 !important;
}
.btn-outline-primary:hover {
    background-color:#053534 !important;
    color:white !important;
}

input.search-input:focus {
    border: none !important;
    outline: none !important; 
}  

select.search-input:focus {
    border: none !important;
    outline: none !important;
}  

*, *::before, *::after {
    box-sizing: border-box;
}

.fixed-select-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    top: auto;
    transform: none;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    width: clamp(180px, 30vw, 320px);
    text-align: center;
    direction: rtl;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fixed-select {
    width: 100%;
    padding: 10px 15px 10px 40px;
    font-size: clamp(13px, 2vw, 16px);
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    background: white;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 12px center;
    background-size: 16px;
    direction: rtl;
    text-align: right;
}

.fixed-select:hover {
    border-color: #007bff;
    box-shadow: 0 2px 10px rgba(0,123,255,0.2);
}

.fixed-select:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
}

/* Content area */
.content {
    padding: clamp(15px, 4vw, 20px);
    min-height: 2000px;
    background: linear-gradient(180deg, #fff 0%, #f0f0f0 100%);
}

.content p {
    text-align: center;
    font-size: clamp(16px, 4vw, 24px);
    color: #666;
    margin: clamp(20px, 5vh, 50px) 0;
    padding: clamp(15px, 4vw, 30px);
    background: white;
    border-radius: clamp(8px, 2vw, 10px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    word-break: break-word;
}

/* Tablet */
@media screen and (max-width: 768px) {
    .fixed-select-container {
        width: 200px;
        bottom: 15px;
        left: 15px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .fixed-select-container {
        width: calc(100% - 30px);
        bottom: 10px;
        left: 15px;
        padding: 10px 12px;
        border-radius: 10px;
    }
}

/* Small Mobile */
@media screen and (max-width: 320px) {
    .fixed-select-container {
        width: calc(100% - 20px);
        bottom: 8px;
        left: 10px;
        padding: 8px 10px;
    }
}

/* Landscape */
@media screen and (max-height: 480px) and (orientation: landscape) {
    .fixed-select-container {
        bottom: 8px;
        left: 10px;
        padding: 6px 12px;
        width: 220px;
    }
}

/* Large screens */
@media screen and (min-width: 1200px) {
    .fixed-select-container {
        width: 350px;
    }

    .fixed-select {
        font-size: 16px;
        padding: 12px 20px 12px 45px;
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .fixed-select {
        min-height: 44px;
    }

    .fixed-select-container {
        -webkit-tap-highlight-color: transparent;
    }
}