/* SearchAppointment Page Styles */

.tableTypeCol2 tr td {
    border-bottom: 1px solid #e8e8e8 !important;
    padding: 14px 15px !important;
    font-family: 'HyundaiRegular';
    font-size: 13px;
    color: #333;
}

.tableTypeCol2 tbody tr:hover {
    background-color: #f5f5f5;
    transition: background-color 0.2s ease;
}

.tableTypeCol2 tbody tr:nth-child(odd) {
    background-color: #fafafa;
}

.tableTypeCol2 tbody tr:nth-child(even) {
    background-color: #ffffff;
}

/* Print Styles */
@media print {
    body {
        margin: 0;
        padding: 0;
        background: white;
    }

    .btn,
    button,
    .search-form-container,
    .container > .row:first-child {
        display: none !important;
    }

    #result {
        display: block !important;
        margin: 0;
        padding: 0;
    }

    .tableTypeCol2 {
        width: 100% !important;
        border-collapse: collapse;
    }

    .tableTypeCol2 tr td {
        border: 1px solid #999 !important;
        padding: 12px !important;
        page-break-inside: avoid;
    }

    .tableTypeCol2 thead tr {
        background: #003366 !important;
        color: white !important;
    }

    .tableTypeCol2 thead th {
        border: 1px solid #003366 !important;
        padding: 12px !important;
    }

    .tableTypeCol2 tbody tr:nth-child(odd) {
        background-color: #f9f9f9 !important;
    }
}
