/* Instructions Container */
.instructions-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.instructions-title {
    text-align: center;
    color: #2c3e50;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #006401 0%, #008a02 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instructions-steps {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 100, 1, 0.1);
    border-color: #006401;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #006401 0%, #008a02 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-description {
    margin: 0;
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Reports Table Styles */
.reports-table-wrapper {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-top: 24px;
}

.reports-header {
    text-align: center;
    margin-bottom: 32px;
}

.reports-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.reports-description {
    color: #6c757d;
    font-size: 0.875rem;
    max-width: 800px;
    margin: 0 auto;
}

.reports-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.reports-table-header {
    background: linear-gradient(135deg, #006401 0%, #008a02 100%);
    color: white;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: left;
    border: none;
}

.reports-table-row {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.reports-table-row:hover {
    background-color: #f8f9fa;
    transform: translateX(2px);
}

.reports-table-cell {
    padding: 14px 16px;
    color: #495057;
    font-size: 0.875rem;
    border: none;
}

.reports-table-actions {
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Action Buttons */
.action-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.edit-btn {
    background: #fafafa;
    color: #ffffff;
}

.edit-btn:hover {
    background: #e0a800;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.archive-btn {
    background: #646463;
    color: white;
}

.archive-btn:hover {
    background: #1a1a1a;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.download-btn {
    background: #28a745;
    color: white;
}

.download-btn:hover {
    background: #218838;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgb(255, 255, 255);
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.pagination-btn {
    background: white;
    border: 1px solid #dee2e6;
    color: #495057;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.pagination-btn:hover {
    background: #f8f9fa;
    border-color: #006401;
    color: #006401;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination-info {
    color: #6c757d;
    font-size: 0.875rem;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .instructions-steps {
        flex-direction: column;
    }
    
    .step-card {
        min-width: auto;
    }
    
    .reports-table-wrapper {
        padding: 16px;
        overflow-x: auto;
    }
    
    .reports-table {
        min-width: 800px;
    }
    
    .reports-table-actions {
        flex-wrap: wrap;
    }
    
    .pagination-controls {
        flex-wrap: wrap;
    }
}


/* -------- TABLE STYLING FOR REPORTS -------- */

.report-table {
    width: 90%;
    margin: 20px auto;
    border-collapse: separate;
    border-spacing: 0 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.reports-table-header {
    text-align: left;
}

/* Table Headers */
.report-table th {
    padding: 12px 15px;
    background: #f7f7f7;
    font-weight: bold;
    border-bottom: 2px solid #ddd;
    text-align: left;
}

/* Table Cells */
.report-table td {
    padding: 12px 15px;
    background: white;
    border-top: 1px solid #eee;
    text-align: left;
}

/* Row Hover Effect */
.report-table tr:hover td {
    background: #f1f1f1;
    transition: 0.2s;
}

/* -------- ACTION BUTTONS -------- */

.report-action-btn {
    margin-right: 6px;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    border: none;
    color: white;
    font-size: 13px;
}

/* Optional: smooth hover */
.report-action-btn:hover {
    opacity: 0.85;
    transition: 0.2s;
}