/* Container for the simple search form */
.mrel-simple-search-container {
    max-width: 800px; /* Điều chỉnh giá trị này để thay đổi chiều rộng */
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 0 auto 20px auto; /* Thêm dòng này để căn giữa */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Flexbox layout for the form fields */
.mrel-simple-search-form .mrel-search-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

/* Individual search field styling */
.mrel-simple-search-form .mrel-search-field {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
}

.mrel-simple-search-form label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.mrel-simple-search-form select,
.mrel-simple-search-form input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.mrel-simple-search-form select:focus,
.mrel-simple-search-form input[type="text"]:focus {
    border-color: #0073aa;
    outline: none;
}

/* Search button styling */
.mrel-simple-search-form .mrel-search-actions {
    text-align: center;
}

.mrel-simple-search-form .mrel-search-button {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #0073aa;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.mrel-simple-search-form .mrel-search-button:hover {
    background-color: #005a87;
    transform: translateY(-2px);
}

/* Search results section */
.mrel-search-results {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mrel-search-result-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mrel-search-result-item h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 18px;
}

.mrel-search-result-item a {
    text-decoration: none;
    color: #0073aa;
}

.mrel-search-result-item a:hover {
    text-decoration: underline;
}

.mrel-search-result-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Simple loading spinner */
.mrel-loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
