/* Business Section */
.business-section {
    background: #0e1a2b;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Header Section */
.business-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* Search Bar */
.search-container {
    position: relative;
    display: inline-block;
}

.search-bar {
    width: 300px;  
    padding: 10px 40px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    background-color: #001117;
    color: white;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
}


/* Filter Section */
.filters {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-dropdown {
    padding: 8px;
    border-radius: 5px;
    border: none;
    background: #132238;
    color: white;
}

/* Buttons */
.add-business {
    background: #1DB781;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;  
    font-size: 16px;
}
.add-business i {
    font-size: 15px;
    background: black; 
    padding: 4px;
    border-radius: 19%; 
}
.filter-btn, .reset-filter {
    background: #1DB781;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
 
}

.filter-btn:hover, .reset-filter:hover, .add-business:hover {
    background: #0f766e;
}


.section {
    background: #03232E;
    padding: 20px;
    border-radius: 12px;
}

.header {
    font-size: 18px;
    font-weight: bold;
    color: #1DB781;
    margin-bottom: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #03232E;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #00ffcc33;
}

th {
    background: #005f64;
    color: #fff;
    font-weight: bold;
}

tr:last-child td {
    border-bottom: none;
}
.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}
.status {
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

.paid {
    background:#1DB781;
    color: white;
    padding: 5px 22px 5px 22px;
    border-radius: 5px;
    cursor: pointer;
}

.unpaid {
    background: #cc0000;
    color: white;
    cursor: pointer;
}

.type {
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    color: white;
}

.office {
    background: #5b2c6f;
}

.home {
    background: #006400;
}

.options {
    text-align: center;
    cursor: pointer;
}