﻿/* General Page Styling */
body {
    background-color: #f8f9fa;
    font-family: "Poppins", sans-serif;
    color: #333;
}

/* Business Card */
.business-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.business-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Table Styles */
.business-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

    .business-table thead {
        background: #3b82f6;
        color: white;
        font-weight: bold;
    }

        .business-table thead th {
            padding: 12px;
            border-radius: 6px 6px 0 0;
        }

    .business-table tbody tr {
        background: #ffffff;
        transition: all 0.3s ease-in-out;
    }

        .business-table tbody tr:hover {
            background: #f3f4f6;
        }

/* Button Styling */
.btn-custom {
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-outline-primary {
    border-color: #3b82f6;
    color: #3b82f6;
}

    .btn-outline-primary:hover {
        background: #3b82f6;
        color: white;
    }

.btn-outline-warning {
    border-color: #f59e0b;
    color: #f59e0b;
}

    .btn-outline-warning:hover {
        background: #f59e0b;
        color: white;
    }

.btn-outline-danger {
    border-color: #dc2626;
    color: #dc2626;
}

    .btn-outline-danger:hover {
        background: #dc2626;
        color: white;
    }

/* Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

    .pagination li a {
        color: #3b82f6;
        padding: 8px 12px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

        .pagination li a:hover {
            background: #3b82f6;
            color: white;
        }
