/* style.css */

/* Font đẹp từ Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    background: linear-gradient(to right, #f4f9f9, #dff6f0);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

/* Tiêu đề trang */
#infocontent th {
    font-size: 22px;
    font-weight: 700;
    background-color: #00838f;
    color: white;
    padding: 15px;
    border-radius: 8px 8px 0 0;
}

/* Bảng thông tin */
#infocontent {
    width: 55%;
    margin: auto;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-collapse: collapse;
}

#infocontent td, #infocontent th {
    padding: 12px 20px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

#infocontent tr:hover {
    background-color: #f1f1f1;
}

/* Form */
.form-control {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px;
}

.form-control:focus {
    border: 1px solid #00838f;
    box-shadow: 0 0 5px rgba(0, 131, 143, 0.5);
}

/* Nút bấm */
.btn-secondary {
    background-color: #00838f !important;
    color: #fff;
    border-radius: 6px;
    padding: 8px 16px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #006064 !important;
}

/* Link nâng cao */
.advanced {
    color: #00838f;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.advanced:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    #infocontent {
        width: 90%;
    }
}
