/* 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;
}

/* Business Table */

.business-table {
    width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    background: #0f2b38;
    padding: 10px;
}

.business-table table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff; 
    font-family: Arial, sans-serif;
}

.business-table th, .business-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #1c3d4b; 
}

.business-table thead {
    background: #07303f; 
}

.business-table th {
    font-weight: bold;
    text-transform: uppercase;
}


.business-table tbody tr {
    background: #0d3a4d;
    transition: background 0.3s ease-in-out;
}


.business-table tbody tr:hover {
    background: #1cb18a; 
    cursor: pointer;
}


