    section {
        max-width: 600px;
        margin: 0 auto;
        padding: 20px;
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .title {
        font-size: 24px;
        font-weight: bold;
        color: #333;
        text-align: center;
        margin-bottom: 1px;
    }

    hr {
        margin-bottom: 5px;
    }

    .form-group {
        margin-bottom: 1px;
        text-align: center;
    }

    .data {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin: 1px 0;
    }

    .time {
        font-size: 19px;
        font-weight: bold;
        color: #333;
        margin: 1px 0;
    }

    #photo-preview {
        display: none;
        max-width: 50%;
        margin: 10px auto; /* จัดให้อยู่ตรงกลางแนวนอน */
        border: 2px solid #ddd;
        border-radius: 8px;
        display: block; /* เพื่อให้ภาพแสดงผล */
    }

    .btn-camera {
        width: 150px;
        height: 50px;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    input[type="text"],
    .form-select {
        width: 100%;
        padding: 10px;       
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: 'Sarabun', sans-serif;
        font-size: 16px;
    }

    input[type="text"]:focus,
    .form-select:focus {
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

    .buttons {
        display: flex;
        justify-content: space-between;
        margin-top: 1px;
    }

    .buttons .btn {
        width: 48%;
        padding: 10px;
        font-size: 16px;
        border-radius: 4px;
    }

    .btn-success {
        background-color: #28a745;
        color: white;
        border: none;
        font-family: 'Sarabun', sans-serif;
    }

    .btn-danger {
        background-color: #dc3545;
        color: white;
        border: none;
        font-family: 'Sarabun', sans-serif;
    }
    .btn-primary {
        background-color: #007bff;
        color: white;
        border: none;
        font-family: 'Sarabun', sans-serif;
    }  
