* {
    text-align: center;
}

body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #fee9f6;
}

#result {
    
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
    position: relative;
}


.results-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.results-table thead {
    background-color: #007bff;
    color: #ffffff;
    font-weight: bold;
}

.results-table th, .results-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.results-table tbody tr:hover {
    background-color: #f1f1f1;
}

.no-results {
    padding: 15px;
    color: red;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.heading {
    width: 100%;
    margin: auto;
    text-align: center;
    background-color: rgb(155, 18, 155);
    color: white;
    padding: 0.2em;
    border-radius: 10px;
    margin-bottom: 50px;
}

#uploadButton {
    background-color: rgb(17, 192, 17);
    border: 0;
    border-radius: 5px;
    color: white;
    width: 100px;
    padding: 10px;
    font-size: large;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

textarea{
    vertical-align: middle;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
    top: 55%;
    left: 48%;
    transform: translate(-50%, -50%);
    z-index: 10;
    
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 