/* Navigation styles */
.reports.nav-container {
    background-color: #628b8e;
    padding: 0 20px;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border-radius: 4px;

}

.reports .nav-bar {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.reports .nav-logo {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
}

.reports .nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.reports .nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.reports .nav-menu li a:hover {
    background-color: #2c3e50;
    color: white;
}

.reports > a {
    display: inline-block;
    padding: 7px 14px;
    background: #f3f7fc;
    border-radius: 4px;
    color: #3f4d5a;
    text-decoration: none;
    margin-right: 10px;
    border: 1px solid #cbd6e2;
    font-weight: 500;
}

.reports > a:hover {
    background: #e5edf6;
    color: #1a202c;
    text-decoration: none;
}

.reports > a:active {
    background: #dae1eb;
    transform: translateY(1px);
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 10px;
    }

    .nav-menu li a {
        padding: 6px 8px;
        font-size: 0.9em;
    }
}

/* Heading styles */
.reports h1 {
    color: #2c3e50;
    border-bottom: 3px solid #A63F77;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.reports h2 {
    color: #2c3e50;
    margin: 30px 0 20px;
    padding-left: 10px;
    border-left: 4px solid #A63F77;
}

/* Table styles */
.reports table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}

/* Header styles */
.reports thead {
    background-color: #A63F77;
    color: white;
}

.reports th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

/* Table cell styles */
.reports td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

/* Link styles */
.reports a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.reports a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Row hover effect */
.reports tbody tr:hover {
    background-color: #f8f9fa;
}

/* Alternative row colors */
.reports tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* ID column */
.reports td:first-child {
    font-weight: 600;
    color: #7f8c8d;
}

/* Full address column */
.reports td:nth-child(5) {
    max-width: 300px;
    word-wrap: break-word;
}

/* Responsive design */
@media (max-width: 768px) {
    .reports table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .reports body {
        padding: 10px;
    }

    .reports th, .reports td {
        padding: 8px 10px;
    }
}

.reports .pagination {
    margin-top: 20px;
    text-align: center;
}
.reports .pagination-list {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.reports .pagination-list li {
    margin: 0 2px;
}
.reports .pagination-list li a {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f1f1f1;
    border-radius: 3px;
    text-decoration: none;
    color: #333;
}
.reports .pagination-list li.active a {
    background-color: #0078ff;
    color: white;
}
.reports .pagination-list li.ellipsis {
    padding: 6px 12px;
}
.reports .pagination-summary {
    margin-bottom: 10px;
    color: #666;
    justify-content: space-between;
}

.reports .btn.submit.disabled{
    pointer-events: none;
}

.reports input[type="text"]{
    border: 1px solid rgba(0,0,0,0.2);
    padding: 4px 8px;
}

.reports button[type="submit"], .reports a{
    background-color: 1px solid rgba(0,0,0,0.2);
    padding: 4px 8px;
}

.reports ~ .modal{
    padding: 24px;
}

.reports ~ .modal form{

}


.reports ~ .modal form .field-container{
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.reports ~ .modal form .field-container textarea{
    border: 1px solid rgba(0,0,0,0.2);
}

.reports ~ #confirmationModal {
    top: calc(50% - 100px);
    left: calc(50% - 200px);
    width: 400px;
    height: 200px;
}
