.shipping-area-search-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.table>:not(:first-child) {
    border-top: 1px solid #e5e7eb !important;
}
.table>:not(caption)>*>* {
    padding: 0.80rem !important;
}

.shipping-search {
    margin: 20px 0;
    display: flex;
    gap: 10px;
}

.text-grey{
    color: #6c757d;
}

.shipping-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.shipping-search-btn {
    padding: 10px 20px;
    background-color: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.shipping-search-btn:hover {
    background-color: #006ba1;
}

.shipping-search-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.shipping-results {
    margin-top: 20px;
}

.shipping-methods-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 4px;
}

.shipping-methods-table .hide {
    display: none;
}

.location-pin-svg {
    width: 30px;
    height: 60px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 20px;
    background-color: transparent;
    border: none;
    font-size: 1em;
}

.shipping-methods-table th {
    height: 3rem;
    vertical-align: middle;
    font-weight: 500;
    color: #6b7280 ;
    font-weight: bold;
    border: none;
    background-color: #f9fafb !important;
}

.shipping-methods-table th,
.shipping-methods-table td {
    border: none;
    padding: 12px;
    text-align: center;
    vertical-align: middle;
}

.shipping-methods-table th:first-of-type {
    width: 50%;
}

.shipping-methods-table tr:not(:last-child){
    margin-bottom: 4px;
    border-bottom: 1px solid #e5e7eb;
}
.shipping-methods-table{
    border-bottom: 1px solid black;
    border-width: 2px;
}

.select2-container .select2-selection--single {
    height: 100% !important;
    padding: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    margin: 5px;
}

.available {
    background-color: rgb(220 252 231); 
    color: rgb(22 101 52); 
    font-weight: bold; 
    font-size: 0.8rem !important;
    text-align: center;
    vertical-align: middle;
}

.shipping-methods-table {
    border-spacing: 0;
    border: 1px solid #ddd;
}

.shipping-methods-table td.area-name, th.shipping_area_name {
    text-align: left;
}

.rtl .shipping-methods-table td.area-name, .rtl th.shipping_area_name {
    text-align: right;
}

.rtl .shipping-area-search-container p {
    text-align: right;
}

.unavailable {
    border: 1px solid #e5e7eb;
    font-weight: bold; 
    font-size: 0.8rem !important;
}

.feature-box {
    border: 1px solid #e5e7eb;
    background: linear-gradient(to bottom right, #eff6ff, #ffffff);
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 15px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-box .header {
    display: flex;
    justify-content:flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.feature-box svg {
    width: 20px;
    height: 20px;
    color: white;
}

.feature-box .icon-wrapper {
    background-color: #0072BC;
    padding: 8px;
    border-radius: 50%;
    margin-right: 12px;
}

.rtl .feature-box .icon-wrapper {
    margin-right: 0px;
    margin-left: 12px;
}

.feature-box p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.feature-box h3 {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 0px;
}

@media (max-width: 600px) {
    .shipping-search {
        flex-direction: column;
    }
    
    .shipping-input,
    .shipping-search-btn {
        width: 100%;
    }
}