/* Override Bootstrap if needed */

.sporati-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
}

/* New Post Form Styling */
.sporati-new-post {
    width: 100%;
    margin: 10px auto;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
}

/* Profile Picture Styling */
.sporati-profile-pic img {
    width: 65px !important; /* Enforce width */
    height: 65px !important; /* Enforce height */
    border-radius: 50% !important; /* Ensure circular shape */
    object-fit: cover; /* Ensures the image is not distorted and fills the area correctly */
}

/* Post Content Box */
#sporati-post-content {
    width: 100%;
    min-height: 50px;
    max-height: 150px; /* Maximum height limit similar to Twitter */
    overflow: hidden;
    resize: none;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

/* Audience Dropdown Styling */
.sporati-audience-btn {
    background: none;
    color: #000;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

/* Audience Options */
.sporati-audience-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    color: #000000;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 100;
    width: 200px;
    transition: opacity 0.3s ease;
}

.sporati-audience-options div:hover {
    background: #f0f0f0;
    cursor: pointer;
}

/* Post Icons */
.sporati-post-icons i {
    font-size: 20px;
    color: #1da1f2;
    margin-right: 10px;
}

/* Post Button */
.sporati-post-btn {
    background-color: #1da1f2;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

.sporati-post-btn:hover {
    background-color: #0d8bd7;
}