/* Profile section */
.profile-box{
    border:1px solid #ccc;
    margin: 1%;
    width: 68%;
    float: right;
}

.profile-left {
    padding: 50px;
    border-radius: 5px;
    float: left;
    width: 40%; 
    
}

.profile-right {
    padding: 50px;
    float: left;
    width: 60%;
    
}

.user-link {
    display: inline-block;
    margin: 0.1%;
    text-align: center;
}

.user-image {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.user-image:hover {
    transform: scale(1.1);
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}

/* Button styling */
button {
    padding: 10px 20px;
    margin: 5px;
    background-color: #007BFF;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* New Users section */
.new-users {
    border:1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    float: left; 
    width: 28%; margin: 1%;
}

.new-users h2 {
    margin-top: 0;
    text-align: center;
}

.new-users ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

.new-users ul li {
    margin-bottom: 3px;
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 10px; 
}

.new-users ul li a {
    text-decoration: none;
    color: #007BFF;
}

.new-users ul li a:hover {
    text-decoration: underline;
}


/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px 0;
    transition: background-color 0.3s;
    
}

.btn:hover {
    background-color: #45a049;
}

.edit-profile-btn {
    background-color: #007bff;
}

.settings-btn {
    background-color: #ff9800;
}

.post-btn {
    background-color: #00aeac;
    float: left;
    width: 100%;
}

/* Post Form Styles */
form, .post-form, .frm-post,  .frm-post textarea {
    width: 100%; /* Full width */
    max-width: 100%;  
    margin: 0; /* Remove margin */
    padding: 0; /* Remove padding */
    background: none !important; /* Remove background */
    background-color: none !important;
    border-radius: 0 !important;
    box-shadow: 0 !important;
    border:none;
    float: left;
}

.post-input {
    width: 100%;
    padding: 10px !important;
    border: 1px solid #ccc !important;
    border-radius: 5px;
    margin-bottom: 10px !important;
    float: left;
}

/* Post History Styles */
.post-history {
    margin-top: 20px;
    float: left;
    width: 100%;
}

.post {
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    float: left;
    width: 100%;
}

/* Form Controls */
.form-controls {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.emoticon-btn,
.upload-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.upload-btn {
    display: inline-block;
    padding: 8px 15px;
}

.upload-input {
    display: none; /* Hide the actual file input */
}

.link-input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 8px;
    font-size: 1em;
    margin-right: 10px;
    width: 100%;
}

.post-btn {
    align-self: flex-end;
    padding: 10px 20px;
    font-size: 1em;
}

/* Hover effects for buttons */
.btn:hover {
    background-color: #0056b3;
}

/* Full width for mobile responsiveness */
@media (max-width: 768px) {
    .form-controls {
        flex-direction: column;
    }

    .link-input {
        width: 100%;
        margin-bottom: 10px;
    }

    .emoticon-btn,
    .upload-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}