/* 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;
    background: #03232E;
    padding: 20px;
    border-radius: 8px;
    margin-top: -18px;
}

/* 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;
}
/*////////////////////// employee data ////////////////*/


.employees-section {
    width: 90%;
    max-width: 1100px;
    background: #04303f;
    padding: 20px;
    border-radius: 10px;
}

h2 {
    text-align: left;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #063c4f;
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
}

th {
    background: #05495b;
    color: #ffffff;
    font-size: 14px;
}

td {
    background: rgba(255, 255, 255, 0.05);
}

tbody tr {
    transition: background 0.3s ease;
}

tbody tr:hover {
    background: #1DB781;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.dots {
    font-size: 18px;
    font-weight: bold;
    color: #ccc;
    cursor: pointer;
}

a {
    color: #1DB781;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
    color: white;
}