/* Main Container */
.vietmst-search-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 5px;
}

/* Search Form */
.vietmst-search-form {
    margin-bottom: 30px;
}

.vietmst-search-form .search-field {
    display: flex;
    gap: 10px;
}

.vietmst-search-form input[type="text"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.vietmst-search-form select {
    width: 200px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.vietmst-search-form button {
    padding: 12px 20px;
    background: #2a6496;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.vietmst-search-form button:hover {
    background: #1d4b75;
}

/* Search Results */
.vietmst-search-results {
    margin-top: 20px;
}

.vietmst-company-result {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #f9f9f9;
    transition: transform 0.2s;
}

.vietmst-company-result:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vietmst-company-result h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.vietmst-company-result h3 a {
    color: #2a6496;
    text-decoration: none;
}

.vietmst-company-result h3 a:hover {
    text-decoration: underline;
}

.company-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.company-meta > span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

address {
    font-style: normal;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Icons */
.fas, .fa {
    color: #2a6496;
    min-width: 16px;
    text-align: center;
}

/* Loading Indicator */
.vietmst-search-loading {
    text-align: center;
    padding: 20px;
}

.vietmst-search-loading .loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #2a6496;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Messages */
.vietmst-no-results, 
.vietmst-error {
    padding: 15px;
    background: #fff8f8;
    border: 1px solid #ffdddd;
    border-radius: 4px;
    color: #d63638;
}

/* Responsive */
@media (max-width: 768px) {
    .vietmst-search-form .search-field {
        flex-direction: column;
    }
    
    .vietmst-search-form select,
    .vietmst-search-form input[type="text"] {
        width: 100%;
    }
}
.vietmst-company-result h3 a {
    color: #2a6496;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vietmst-company-result h3 a:hover {
    color: #1d4b75;
    text-decoration: underline;
}

/* Style cho link không khả dụng */
.vietmst-company-result h3 a[href="#"] {
    color: #666;
    cursor: not-allowed;
}
/* Thêm vào cuối file style.css */

/* Company Type Badge */
.company-type-badge {
    display: inline-block;
    padding: 3px 8px;
    background: #2a6496;
    color: white;
    font-size: 12px;
    border-radius: 3px;
    margin-bottom: 5px;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 3px;
    margin-top: 5px;
}

.status-active {
    background: #4CAF50;
    color: white;
}

.status-inactive {
    background: #f44336;
    color: white;
}

/* Meta Icons */
.company-meta .fas {
    font-size: 14px;
    min-width: 18px;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .company-meta > span {
        flex: 0 0 100%;
        margin-bottom: 5px;
    }
}