67 lines
1.1 KiB
CSS
67 lines
1.1 KiB
CSS
.table-container {
|
|
max-width: 100%;
|
|
margin: 20px auto;
|
|
padding: 20px;
|
|
background: #ffffff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.records-table {
|
|
width: 80%%;
|
|
border-collapse: collapse;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.records-table th,
|
|
.records-table td {
|
|
padding: 12px;
|
|
text-align: left;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.records-table th {
|
|
background-color: #f8f9fa;
|
|
font-weight: 600;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
.records-table tr:hover {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.download-link {
|
|
display: inline-block;
|
|
padding: 6px 12px;
|
|
background-color: #3498db;
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.download-link:hover {
|
|
background-color: #2980b9;
|
|
}
|
|
|
|
.table-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.search-box {
|
|
padding: 8px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
width: 200px;
|
|
}
|
|
|
|
.no-records {
|
|
text-align: center;
|
|
padding: 20px;
|
|
color: #666;
|
|
} |