.maarch-search-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
font-family: 'Arial', sans-serif;
}
.maarch-search-container form {
display: flex;
justify-content: center;
gap: 10px;
}
.maarch-search-container input[type="text"] {
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
width: 300px;
transition: border-color 0.3s ease;
}
.maarch-search-container input[type="text"]:focus {
border-color: #007bff;
outline: none;
}
.maarch-search-container button[type="submit"] {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
.maarch-search-container button[type="submit"]:hover {
background-color: #0056b3;
}
.maarch-results-table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.maarch-results-table th,
.maarch-results-table td {
border: 1px solid #e0e0e0;
padding: 12px;
text-align: left;
font-size: 14px;
}
.maarch-results-table th {
background-color: #f8f9fa;
font-weight: 600;
color: #333;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.maarch-results-table td {
color: #555;
}
.maarch-results-table tr:nth-child(even) {
background-color: #f9f9f9;
}
.maarch-results-table tr:hover {
background-color: #e9ecef;
transition: background-color 0.2s ease;
}
.maarch-results-table td:last-child {
text-align: center;
}
.error-message {
color: #dc3545;
font-weight: bold;
text-align: center;
margin-top: 20px;
font-size: 16px;
}
.info-message {
color: #6c757d;
text-align: center;
margin-top: 20px;
font-size: 16px;
}
.pagination-controls, .modal-pagination-controls {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
margin-top: 20px;
}
.pagination-btn, .modal-pagination-btn {
padding: 8px 16px;
border: none;
background-color: #007bff;
color: white;
font-size: 14px;
font-weight: 500;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.1s ease, box-shadow 0.2s ease;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.pagination-btn:hover:not(:disabled), .modal-pagination-btn:hover:not(:disabled) {
background-color: #0056b3;
transform: translateY(-1px);
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.pagination-btn:disabled, .modal-pagination-btn:disabled {
background-color: #adb5bd;
cursor: not-allowed;
box-shadow: none;
}
.pagination-btn.active, .modal-pagination-btn.active {
background-color: #0056b3;
font-weight: bold;
transform: scale(1.05);
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.loading-container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
.loading-bar {
width: 300px;
height: 6px;
background-color: #e9ecef;
border-radius: 3px;
overflow: hidden;
position: relative;
}
.loading-progress {
width: 0;
height: 100%;
background-color: #007bff;
animation: loading 2s infinite ease-in-out;
}
@keyframes loading {
0% { width: 0; transform: translateX(0); }
50% { width: 50%; transform: translateX(100%); }
100% { width: 0; transform: translateX(200%); }
}
.loading-container p {
margin-top: 10px;
font-size: 14px;
color: #6c757d;
}
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.5);
}
.modal-content {
background-color: #fff;
margin: 5% auto;
padding: 20px;
border: 1px solid #888;
width: 90%;
max-width: 1000px;
border-radius: 5px;
position: relative;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
.history-table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
.history-table th, .history-table td {
border: 1px solid #ddd;
padding: 12px;
text-align: left;
font-size: 14px;
} 
.history-table th {
background-color: #f2f2f2;
font-weight: bold;
}
.print-btn {
background-color: #007bff;
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 5px;
position: absolute;
top: 10px;
right: 10px;
}
.print-btn:hover {
background-color: #0056b3;
}
.action-icon {
font-size: 16px;
margin: 0 8px;
color: #007bff;
text-decoration: none;
transition: color 0.3s ease;
}
.action-icon:hover {
color: #0056b3;
}