
body {
    background-color: #f0f2f5;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 40px 20px;
}


.container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); 
}

/* Khung chứa bảng & Đổ bóng tổng thể */
table {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    border-spacing: 0;
    border-collapse: separate; /* Cần thiết để áp dụng border-radius */
    border-radius: 10px;
    overflow: hidden; /* Cắt góc thừa cho đẹp */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Hiệu ứng đổ bóng nổi khối */
    font-family: Arial, sans-serif;
}

/* Tiêu đề chính phía trên bảng */
caption {
    caption-side: top;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 26px;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Header của bảng (Cột màu xanh) */
th {
    background-color: #0000ff; /* Màu xanh lam đậm đậm chất phẳng */
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 14px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

th:last-child {
    border-right: none; 
}


td {
    padding: 12px 20px;
    font-size: 14px;
    color: #333333;
    text-align: left;
    border-right: 1px solid #d0d0d0; 
}

td:last-child {
    border-right: none;
}


tr:nth-child(even) {
    background-color: #dcdcdc; 
}

tr:nth-child(odd) {
    background-color: #ffffff; 
}


tr:hover td {
    background-color: #e8e8e8;
}


h1 {
    text-align: center;
    color: #1a2530;
    font-size: 24px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 25px;
}


form {
    display: flex;
    flex-direction: column;
}


label {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 6px;
}


input, select, textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 18px;
    border: 1px solid #dcdfe6;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}


input:focus, select:focus, textarea:focus {
    border-color: #3b82f6;
}


textarea {
    height: 100px;
    resize: vertical;
}


button {
    width: 100%;
    padding: 12px;
    background-color: #3598dc; 
    color: white;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #257fbc;
}