body {
    font-family: Arial, sans-serif;
    background-color: #e6ecf0;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9;
    background-color: #0d6efd;
}

.navbar-brand,
.navbar .nav-link {
    color: white;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.side-menu {
    background-color: white;
    border: 1px solid #e1e8ed;
    padding: 20px;
}

.side-menu h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #657786;
}

.side-menu a {
    display: block;
    padding: 10px 0;
    color: #1da1f2;
    text-decoration: none;
    font-size: 16px;
}

.side-menu a:hover {
    background-color: #e8f5fd;
}

.profile-section {
    background-color: white;
    padding: 20px;
}
.profile-section h4{
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 10px;
}

.profile-section h4 .logout {
    float: inline-end;
    font-size: 15PX;
    padding: 5px 0px;
}

.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}


.height-fit{
    height: fit-content;
}
a {
    color: #1DA1F2; /* Twitter's link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
.tweet-actions{
	margin-top: 20px;
    text-align: right;
}
.tweet {
    position: relative;
}
.share-xcom-dropdown {
    position: absolute;
    right: 150px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    display: block;
    z-index: 1000;
    border-radius: 10px;
    text-align: left;
    box-shadow: rgb(81 81 81 / 20%) 0px 0px 15px, rgb(26 26 26 / 15%) 0px 0px 3px 1px;
    margin-top: 10px;
}
.share-domain-dropdown {
    position: absolute;
    right: 15px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    display: block;
    z-index: 1000;
    border-radius: 10px;
    text-align: left;
    box-shadow: rgb(81 81 81 / 20%) 0px 0px 15px, rgb(26 26 26 / 15%) 0px 0px 3px 1px;
    margin-top: 10px;
}

.share-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.share-dropdown li {
    margin: 10px 0;
}

.share-dropdown a {
    cursor: pointer;
    color: #333;
    text-decoration: none;
}

.share-dropdown a:hover {
    text-decoration: underline;
}


.suggestions-dropdown {
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #e7e7e7;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}