116 lines
1.9 KiB
CSS
116 lines
1.9 KiB
CSS
|
.ramais-container {
|
||
|
max-width: 1200px;
|
||
|
margin: 0 auto;
|
||
|
padding: 20px;
|
||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
||
|
}
|
||
|
|
||
|
.ramais-filtros {
|
||
|
display: flex;
|
||
|
gap: 15px;
|
||
|
margin-bottom: 20px;
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
|
||
|
.ramais-filtros input,
|
||
|
.ramais-filtros select {
|
||
|
flex: 1;
|
||
|
min-width: 200px;
|
||
|
padding: 10px;
|
||
|
border: 1px solid #ddd;
|
||
|
border-radius: 4px;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
.ramais-filtros input:focus,
|
||
|
.ramais-filtros select:focus {
|
||
|
outline: none;
|
||
|
border-color: #2271b1;
|
||
|
box-shadow: 0 0 0 1px #2271b1;
|
||
|
}
|
||
|
|
||
|
.ramais-table {
|
||
|
width: 100%;
|
||
|
border-collapse: collapse;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.ramais-table th,
|
||
|
.ramais-table td {
|
||
|
padding: 12px 15px;
|
||
|
text-align: left;
|
||
|
border-bottom: 1px solid #ddd;
|
||
|
}
|
||
|
|
||
|
.ramais-table th {
|
||
|
background-color: #f5f5f5;
|
||
|
font-weight: 600;
|
||
|
}
|
||
|
|
||
|
.ramais-table tr:hover {
|
||
|
background-color: #f9f9f9;
|
||
|
}
|
||
|
|
||
|
.ramais-table a {
|
||
|
color: #2271b1;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.ramais-table a:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
.ramais-no-results,
|
||
|
.ramais-loading,
|
||
|
.ramais-error {
|
||
|
padding: 20px;
|
||
|
text-align: center;
|
||
|
background-color: #f5f5f5;
|
||
|
border-radius: 4px;
|
||
|
margin: 20px 0;
|
||
|
color: #666;
|
||
|
}
|
||
|
|
||
|
.ramais-pagination {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
gap: 5px;
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
|
||
|
.ramais-page-link {
|
||
|
padding: 8px 12px;
|
||
|
background-color: #f5f5f5;
|
||
|
border-radius: 4px;
|
||
|
text-decoration: none;
|
||
|
color: #333;
|
||
|
}
|
||
|
|
||
|
.ramais-page-link:hover {
|
||
|
background-color: #e5e5e5;
|
||
|
}
|
||
|
|
||
|
.ramais-page-link.active {
|
||
|
background-color: #2271b1;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
@media (max-width: 768px) {
|
||
|
.ramais-filtros {
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.ramais-filtros input,
|
||
|
.ramais-filtros select {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.ramais-table {
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
.ramais-table th,
|
||
|
.ramais-table td {
|
||
|
padding: 8px 10px;
|
||
|
}
|
||
|
}
|