#mi-area-news-form {
    background: #fff;
    padding: 10px 0;
}

#mi-area-news-form .form-group {
    margin-bottom: 12px;
}

#mi-area-news-form .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    color: #555;
    background-color: #fff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

#mi-area-news-form .form-control:focus {
    border-color: #007bff;
}

#mi-area-news-form .form-control:disabled {
    background-color: #f9f9f9;
    cursor: not-allowed;
}

#mi-area-news-form .search-btn {
    width: 100%;
    padding: 11px;
    background-color: #0073e6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease;
}

#mi-area-news-form .search-btn:hover {
    background-color: #005bb5;
}