.body-index {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background-image: url("https://i.ibb.co/QcPKJ9t/1688630962288.jpg"); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.h1-index {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 200px;
    height: auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="date"] {
    width: 98.8%;
    padding: 10px;
    padding-right: 5px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

select {
    width: 100%;
    padding: 10px;
    padding-right: 5px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.logout {
    text-align: right;
}

.logout a {
    padding: 10px 20px;
    background-color: #ff0000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
}

.logout a:hover {
    background-color: #cc0000;
}

/* Results Page Cards */

.body-results {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    margin: 0;
    padding: 20px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: calc(33.33% - 20px);
    box-sizing: border-box;
    /* Adjust the width as needed */
    /* Each card takes about 33% width with gap */
    min-width: 300px;
    /* Max width for each card */
}

.vendor-name {
    font-size: 20px;
    font-weight: bold;
}

.card-info {
    margin: 8px 0;
    color: #666;
}

/* Results Table */

.table {
    border-collapse: collapse;
    width: 100%;
}

.table th,
.table td {
    border: 1px solid #000;
    padding: 5px;
    text-align: left;
}

.table th {
    background-color: #f2f2f2;
}