/* START KOL Buddy Neighbour - Dark Mode */

html.dark-mode .kol-buddy-neighbour-container {
    background: #1e1e1e;
    border: 1px solid #202202;
    box-shadow: 0px 0px 6px 0px #545856;
    padding: 0;
    margin: 0 auto 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    position: relative;
    width: 400px;
    height: 20px;
    z-index: 9999;
    overflow: hidden;
}

html.dark-mode .kol-buddy-neighbour-header {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    font-weight: bold;
    font-size: 12px;
    margin: 0;
    padding: 0;
    border: none;
    flex: 1;
    white-space: nowrap;
	z-index: 9999;
}

html.dark-mode .kol-buddy-neighbour-header .dashicons {
    color: #4CAF50;
    font-size: 14px;
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

html.dark-mode .kol-neighbour-left,
html.dark-mode .kol-neighbour-right {
    flex: 0 0 auto;
}

html.dark-mode .kol-neighbour-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
    text-decoration: none;
    transition: none;
    padding: 3px 8px;
    border: none;
    border-radius: 0;
    height: 20px;
}

html.dark-mode .kol-neighbour-link .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

/* END KOL Buddy Neighbour - Dark Mode */

/* START KOL Buddy Neighbour - Light Mode */

html.light-mode .kol-buddy-neighbour-container {
    background: #ffffff;
    border: 1px solid #d0d0d0;
    box-shadow: 0px 0px 6px 0px #c0c0c0;
    padding: 0;
    margin: 0 auto 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    position: relative;
    width: 400px;
    height: 20px;
    z-index: 9999;
    overflow: hidden;
}

html.light-mode .kol-buddy-neighbour-header {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-weight: bold;
    font-size: 12px;
    margin: 0;
    padding: 0;
    border: none;
    flex: 1;
    white-space: nowrap;
	z-index: 9999;
}

html.light-mode .kol-buddy-neighbour-header .dashicons {
    color: #4CAF50;
    font-size: 14px;
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

html.light-mode .kol-neighbour-left,
html.light-mode .kol-neighbour-right {
    flex: 0 0 auto;
}

html.light-mode .kol-neighbour-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
    text-decoration: none;
    transition: none;
    padding: 3px 8px;
    border: none;
    border-radius: 0;
    height: 20px;
}

html.light-mode .kol-neighbour-link .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

/* END KOL Buddy Neighbour - Light Mode */

@media screen and (max-width: 768px) {
    html.dark-mode .kol-buddy-neighbour-container,
    html.light-mode .kol-buddy-neighbour-container {
        width: 100%;
        max-width: 400px;
    }
}
