#friendsContainer {
	height: fit-content;
	background: var(--primary-background);
	display: grid;
	margin-top: 25px;
	border-radius: 5px;
	padding-bottom: 15px;
}

#connectionHdr {
	
}

input[name="search_connections"] {
    border: none;
    border-radius: 20px;
    height: 35px;
    float: right;
    padding-left: 25px;
    width: 200px;
    background-color: var(--comment-background);
    border: 1px solid var(--secondary-background);
    font-size: 0.8250rem;
}

#searchFriends {
    position: relative;
    width: 100%;
    background: #fff;
    height: auto;
    padding: 15px 0px 15px;
    margin: 0px;
}

#friendList {
	display: contents;
	width: 100%;
	position: relative;
	left: 15px;
}

#notification-container {
	height: 100%;
}

#notificationHeader {
	position: relative;
	top: 150px;
}

.connCrdBd {
	display: inline-flex; 
	width:100%;
}

.connCrdHdr {
	padding-top: 20px;
	display: grid;
	min-width: fit-content;
	height: fit-content;
}

.fullNameLbl {
	font-weight: 600;
    color: var(--primary-title);
    height: max-content;
	font-size: 1.1rem;
}

.fullNameLbl:hover{
	cursor: pointer;
	text-decoration: underline;
}


.numConnLbl {
	font-size: 0.8125rem;
	color: var(--text-preview);
}

.connCrdBtns {
	padding: 20px 25px;
	text-align: right;
	margin-left: auto;
}

.connFrnds, .connRmFrnds {
    padding: 5px 12.5px 5px 12.5px;
    width: 125px;
    text-align: right;
}

.connFrnds {
    color: #fff;
    background: var(--tertiary-btn);
    font-size: 0.85rem;
    border-radius: 2.5px;
    padding-left: 10px;
    height: 35px;
}

.connRmFrnds {
	box-shadow: 0px 2px 4px 1px lightgrey;
	margin-top: 5px;
}

.connRmFrnds::after {
    content: "";
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    border: 7.5px solid white;
    border-color: transparent transparent #000 transparent;
    width: 5px;
    height: 5px;
    margin-left: -5px;
}

.connFrnds:hover, .connRmFrnds:hover {
	cursor: pointer;
}

.connRmFrnds {
	display: none;
	box-shadow: 0px 2px 4px 1px lightgrey;
    margin-top: 5px;
    background: #000;
    color: #fff;
    border-radius: 5px;
}

/*.FrndBtn, .RmBtn {
    transform: scale(1.5);
    margin: 3px 5px 5px 10px;
    height: fit-content;
}

.FrndBtn {
    color: #4CAF50;
}

.RmBtn {
    top: -4px;
    left: -7.5px;
    color: #F44336;
    margin-left: 15px!important;
    position: relative;
}*/

/*.FrndBtn:hover, .RmBtn:hover {
	color: dimgray;
	cursor: pointer;
}
*/
.connAvtrCont {
	padding-top: 10px;
	text-align: center;
	margin-right: 10px;
}

.connAvtr {
	width: 75px;
    height: 75px;
    border-radius: 5px;
}