/**
 * CSS cho chức năng tìm kiếm dự án
 * Tệp này nên được lưu trong assets/css/tim-kiem-du-an.css
 */

/* Container chính */
.tim-kiem-du-an-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Form tìm kiếm */
.tim-kiem-du-an-form {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
    align-items: center;
}

.tim-kiem-du-an-form .form-group {
    margin: 0;
}

.tim-kiem-du-an-form .form-group:first-child {
    flex: 1;
}

/* Style cho input */
.tim-kiem-du-an-form input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.tim-kiem-du-an-form input[type="text"]::placeholder {
    color: #888;
    font-size: 14px;
}

/* Style cho nút tìm kiếm */
.tim-kiem-du-an-form button {
    padding: 12px 20px;
    background-color: #ffba00;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    white-space: nowrap;
    font-weight: 600;
}

.tim-kiem-du-an-form button:hover {
    background-color: #005177;
}

/* Thông báo */
.tim-kiem-thong-bao {
    padding: 12px 15px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Container kết quả */
.tim-kiem-ket-qua-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Card dự án */
.the-du-an {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

.the-du-an:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.the-du-an a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Ảnh đại diện dự án */
.anh-dai-dien {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.anh-dai-dien img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ngay-thang {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
}

/* Tiêu đề dự án */
.tieu-de-du-an {
    padding: 15px;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
}

/* Loading */
.loading {
    text-align: center;
    padding: 30px;
    color: #666;
    font-size: 16px;
}

/* Không có kết quả */
.khong-ket-qua {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
    background-color: #f9f9f9;
    border-radius: 8px;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .tim-kiem-du-an-form {
        flex-direction: column;
    }
    
    .tim-kiem-du-an-form .form-group {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .tim-kiem-ket-qua-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .tim-kiem-ket-qua-container {
        grid-template-columns: 1fr;
    }
}