﻿    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }

    h1 {
        text-align: center;
        font-size: 1.5rem;
        font-family: 'Arial', sans-serif;
    }

    h2 {
        font-size: 1.0rem;
        font-family: 'Arial', sans-serif;
    }

    ul {
        list-style-type: none;
        padding: 0;
    }

    li {
        margin: 10px 0;
    }

    a {
        text-decoration: none;
        color: #007bff;
    }

    a:hover {
        text-decoration: underline;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
        h1 {
            font-size: 1.5rem;
            font-family: 'Arial', sans-serif;
        }

        ul {
            padding: 10px;
        }

        li {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        h1 {
            font-size: 1.2rem;
        }

        li {
            font-size: 0.9rem;
        }
    }
    td.itemrow {
        border: 1px solid #ccc; /* Light gray border */
        padding: 10px; /* Optional: Add some padding */
        margin-bottom: 10px; /* Optional: Add spacing between rows */
    }
    .card {
        border-radius: 10px;
        transition: transform 0.3s;
    }

    .card:hover {
        transform: scale(1.05);
    }

.business-profile-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

    .business-profile-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.profile-cover {
    height: 140px;
    position: relative;
    overflow: hidden;
}

    .profile-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.default-cover-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.profile-logo {
    position: absolute;
    bottom: -30px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

    .profile-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.default-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.profile-stats i {
    opacity: 0.7;
    margin-right: 4px;
}