.classified-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 5px;
}
.classified-table th, .classified-table td {
    padding-top: 10px;
    text-align: left;
}
.classified-table th {
    font-weight: bold;
    background-color: #f4f4f4;
}
.classified-table td {
    border-bottom: 1px solid #ddd; /* Light line under rows for separation */
}
.classified-table th:nth-child(1), .classified-table td:nth-child(1) {
    width: 20%; /* Category */
}
.classified-table th:nth-child(2), .classified-table td:nth-child(2) {
    width: 60%; /* Ad Title */
}
.classified-table th:nth-child(3), .classified-table td:nth-child(3) {
    width: 20%; /* Date */
}

#pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    gap: 10px;
    flex-wrap: nowrap;
}

#pagination-controls button {
    padding: 6px 12px;
    font-size: 14px;
    border: 1px solid #007bff;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    transition: background-color 0.2s ease;
}

#pagination-controls button:hover:not(:disabled) {
    background-color: #0056b3;
}

#pagination-controls button:disabled {
    background-color: #d6d6d6;
    border-color: #ccc;
    color: #888;
    cursor: not-allowed;
}

#pagination-controls button i {
    font-size: 14px;
}

#pagination-controls span {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    color: #333;
}

/* Mobile Responsive Styling */
@media (max-width: 480px) {
    #pagination-controls {
        gap: 6px;
    }

    #pagination-controls button {
        padding: 4px;
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }

    #pagination-controls span {
        font-size: 12px;
    }
}