.cards-container {
    display: table-row;
    justify-content: center;
    gap: 20px;
    /* Adjust the space between cards */
}

.card {
    background-color: #f2f2f2;
    padding: 20px;
    width: 200px;
    /* Adjust width to control the size of the cards */
    height: 200px;
    /* Adjust height to control the size of the cards */
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    /* Distributes space evenly around items */
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Optional: Adds some shadow for depth */
}

.card-header {
    font-size: 20px;
    margin-bottom: 10px;
}

.sub-card {
    background-color: #ffffff;
    padding: 10px;
    width: 50%;
    /* Make sub-cards fill the parent card width */
    text-align: center;
    /* Center text in sub-cards */
    border: 1px solid #ddd;
    border-radius: 5px;
    /* Optional: Rounds the corners of sub-cards */
}



.search-container,
.results-table,
.pagination {
    margin-top: 20px;
    align-items: center;
}

.results-table table {
    width: 100%;
    border-collapse: collapse;
}

.results-table th,
.results-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.results-table th {
    background-color: #2196f3;
    color: white;
}

.pagination button {
    padding: 5px 10px;
    margin: 0 5px;
    border: none;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}

.pagination button:disabled {
    background-color: #ccc;
}

/* Input Box Styles */
input[type="text"],
input[type="date"],
input[type="file"] {
    width: 25%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 13px;
    outline: none;
}

/* Button Styles */
button {
    padding: 5px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

