body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
}
/* main */
main{
    position: relative;
    min-height: 89vh;
}
main::before{
    content: "";
    background: url("../images/checkOutBackground.jpg") no-repeat center center/cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
    height: 100%;
    width: 100%;
}

/* page heading */
.page-head{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 3.5rem;
    text-align: center;
    color:#68b1ff;
    margin: 2rem;
}

/* qr code */
.qr-container {
    width:100%;
    height: 100%;
    
    /* padding: 20px; */
    margin: auto;
    /* border: 5px solid #212121; */
    /* background-color: #424242; */
}

.qr-container td{
    text-align: center;
}

.qr-container td h2 {
    color: #ff9800;
    font-size: 24px;
    margin-bottom: 20px;
}

.qr-container td img {
    width: 15%;
    height: auto;
}

/* table */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;

    background: rgba(242, 242, 242 , 0.300);
}
td{
    color: #00ff0d;
    font-size: 1.2rem;
}
th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #333;
    font-size: 1.3rem;
}

tr:hover {
    transition: all 0.3s ease-in;
    background-color: rgba(242, 242, 242, 0.808);
}
tr:hover td{
    color: #333;
}

/* form CHECKOUT + GET DETAILS */
.checkOut-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.checkOutForm {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkOutForm input[type="email"] {
    padding: 10px;
    width: 70%;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 2rem;

    font-size: 1.3rem;
}

.checkOutForm input[type="submit"] {
    padding: 10px 20px;
    background-color: #68b1ff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;

    font-size: 1.1rem;
}

.checkOutForm input[type="submit"]:hover {
    background-color: #68b1ff;
}


@media (max-width : 550px) {
    .table-container{
        width: 100vw;
        overflow: scroll;
    }
}