.tc-container {
    width: 100%;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(90deg, rgba(234, 234, 234, 1) 0%, rgba(161, 175, 255, 1) 100%);
}

.tc-container h1 {
    margin-top: 50px;
    text-align: center;
    color: rgb(0, 0, 0)
}

#myTable {
    border-collapse: collapse;
    width: 60%;
}

#myTable th {
    text-align: left;
    font-size: 22px;
    padding: 12px;
    color: white;
    background-color: rgb(9, 55, 140);
    font-weight: bold;
    border: 2px rgb(21, 21, 21) solid;
}

#myTable td {
    text-align: left;
    padding: 12px;
    border: 2px solid rgb(114, 110, 110);
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    text-transform: capitalize;
}

input[type=text] {
    width: 40%;
    box-sizing: border-box;
    border: 2px solid #696464;
    border-radius: 20px;
    font-size: 16px;
    background-color: rgb(255, 255, 255);
    background-image: url('/images/searchicon.jpeg');
    background-size: 25px;
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    margin: 40px;
    box-sizing: border-box;
    text-overflow: ellipsis;
}

input[type=text]:focus {
    width: 50%;
}

input:hover {
    box-shadow: 0 0 5px rgb(1, 1, 1);
}

#noRecordsMessage {
    padding: 15px;
    font-size: 20px;
}