body {
    font-family: "obvia-narrow-thin", sans-serif;
	background-color: #f7f7f7;
}
#content-container {
    display: flex;
	flex-grow: 1;
	font-size: 15px;
	max-width: 1000px; /* Adjust this value based on your content's optimal width */
    margin: 0 auto; /* This centers the body when the screen width exceeds 1200px */
    padding: 0px; /* This adds a bit of space inside the body, enhancing readability */
}
#image-container {
    display: flex;
    flex-direction: column; /* This aligns the children vertically */
    align-items: center; /* This centers the items horizontally */
    margin-bottom: 20px;
}
#image-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
#image {
    width: 1 inch;
    height: 1 inch;
    margin-bottom: 10px; /* Adjusted to add space below the image, rather than to its right */
}
#centered-text {
    text-align: center;
    margin-bottom: 20px;
	font-family: "obvia-narrow-thin", sans-serif;
}
.subscribe-button {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
	font-family: "obvia-narrow-thin", sans-serif;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 10px;
	font-family: "obvia-narrow-thin", sans-serif;
}
li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
	font-family: "obvia-narrow-thin", sans-serif;
}
.vehicle-heading {
    font-size: 1.5em;
    font-weight: bold;
}
li img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
#right {
    flex: 30%;
	background-color: #FFFFFF;
    padding: 20px;
}

#share-reg {
    text-align: center;
    margin-top: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 100%;
}

#share-reg p {
    font-size: 1.2em;
    font-weight: bold;
    margin: 5px 0;
}

#reg-url {
    color: #007BFF;
    cursor: pointer;
    font-weight: bold;
    font-family: "obvia-narrow-thin", sans-serif;
    font-size: 1.2em;
    min-width: 260px;
    display: inline-block;
}

#copy-button {
    background-color: #007BFF; /* Blue background */
    color: white;
    font-size: 1em;
    padding: 10px 20px; /* Add some padding */
    border: none;
    border-radius: 8px; /* Curved edges */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover transition */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle button shadow */
}

#copy-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}

#copy-button:active {
    transform: translateY(0); /* Return on click */
    background-color: #004085; /* Even darker on click */
}

#copy-button.copied {
    background-color: #28a745; /* Green background to indicate success */
    color: white;
    border: none;
}

#reg-url:hover {
    text-decoration: underline;
}

.form-container {
    text-align: center;
    border: 1px solid #ccc;
    width: calc(100% - 40px);
    height: auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.form-container textarea {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: Arial, sans-serif;
}
.form-container button[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.form-container img {
    max-width: 100%;
    height: auto;
}
.form-container-replies button[type="submit"], .reply-button {
    background-color: #007BFF; /* Choose a modern, vibrant color */
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px; /* Rounded corners */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}
.form-container-replies button[type="submit"]:hover, .reply-button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}
.form-container-replies textarea {
    width: calc(100% - 24px); /* Full width minus padding */
    padding: 12px;
    margin-top: 8px; /* Space from the previous element */
    border: 1px solid #ccc; /* Subtle border */
    border-radius: 4px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Soft shadow */
    transition: border-color 0.3s ease; /* Smooth transition for focus effect */
    font-size: 16px; /* Larger font size for readability */
    line-height: 1.5; /* Adequate line spacing */
}

.form-container-replies textarea:focus {
    border-color: #007BFF; /* Highlight color when focused */
    outline: none; /* Remove default focus outline */
}
.container {
    position: relative;
    text-align: center;
}
.split-form-container {
    display: flex; /* Enables flex layout */
    text-align: center;
    border: 1px solid #ccc;
    width: calc(100% - 40px); /* Adjust as necessary */
    height: auto; /* Adjust if you want a fixed height */
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.left-side, .middle-side, .right-side {
    flex: 1; /* Each child will take equal space */
    padding: 10px; /* Add padding for spacing, adjust as necessary */
    box-sizing: border-box; /* Ensures padding doesn't add to the total width */
}
.split-form-container textarea {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: Arial, sans-serif;
}
.image {
    width: 100%;
    height: auto;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.0);
    display: flex;
    justify-content: center;
    align-items: center;
}
.post {
	position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 20px;
}

.flag-container {
    position: absolute;
    top: 10px;
    right: 10px;
}

.flag-image {
    width: 15px;
    height: auto;
}

.post-media {
    max-width: 50%;
    height: auto;
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.profile-picture {
    width: 50px; /* Adjust as needed */
    height: 50px; /* Adjust as needed */
    border-radius: 50%;
    margin-right: 10px;
}

.user-details .name,
.user-details .date {
    margin: 0; /* Removes default margins */
    padding: 0; /* Removes default paddings, if any */
}

.user-details .name {
    font-weight: bold;
    margin-bottom: 4px; /* Adds a small space below the name */
}

.user-details .date {
    font-size: 0.85em;
    color: #666;
    margin-top: 4px; /* Adds a small space above the date if needed */
}

.post-text {
    margin-bottom: 15px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
    color: #666;
    border-top: 1px solid #eee; /* subtle separator */
    padding: 10px;
    margin-top: 10px;
    border-bottom: 1px solid #eee;
}

.likes,
.comments {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.likes:hover,
.comments:hover {
    color: #000; /* Darken the text on hover for better interactivity */
}

.likes:before,
.comments-toggle:before {
    display: inline-block; /* Use inline-block for better layout control */
    content: '';
    width: 16px;
    height: 16px;
    margin-right: 6px;
    background-size: cover;
    background-repeat: no-repeat; /* Ensure the background does not repeat */
}

.likes:before {
    background-image: url('../img/empty-heart.png');
}

.likes.liked:before { /* Ensure you target the :before on .liked */
    background-image: url('../img/full-heart.png');
}

.comments-toggle:before {
    background-image: url('../img/comment.png');
}

.like-count,
.comment-count {
    margin-left: 4px;
    font-weight: bold;
    color: #333; /* Slightly darker than the other text */
}

.comments-section {
    margin-top: 10px;
    padding: 10px;
    background-color: #fff;
}

.comments-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.comments-list .comment {
    align-items: flex-start;
}

.comment-profile-picture {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.comment-details {
    flex: 1;
}

.comments-list .comment .comment-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 5px;
}

.comments-list .comment .comment-username {
    font-weight: bold;
    font-size: 0.9em;
}

.comments-list .comment .comment-date {
    font-size: 0.8em;
    color: #666;
    margin-top: 2px;
}

.comment-body p {
    margin-top: 15px;
    font-size: 1.0em;
    color: #333;
}

.comment-form {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.comment-input {
    flex: 1;
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.comment-submit {
    padding: 8px 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.comment-submit:hover {
    background-color: #0056b3;
}


.comments-list li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.comment-input {
    width: 75%;
    padding: 8px;
    margin-right: 5px;
}

.comment-submit {
    padding: 8px 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.comment-submit:hover {
    background-color: #0056b3;
}
.comments-toggle {
    cursor: pointer;
    display: inline-block;
    margin-left: 10px;
}
.replies {
    margin-left: 0px; /* Indent replies */
    margin-top: 10px;
	font-family: "obvia-narrow-thin", sans-serif;
}

.reply {
    border: 1px solid #eee;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
	font-family: "obvia-narrow-thin", sans-serif;
}

.reply-text {
    font-size: 14px;
	font-family: "obvia-narrow-thin", sans-serif;
}
#feed {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
#left {
    flex: 80%;
    background-color: #fff;
    padding: 20px;
}
.custom-file-upload {border: 0px solid #ccc;
    display: inline-block;
    cursor: pointer;}
  #file-upload {display: none;}
.premiumcreditstext{
	font-size: 10px;
    padding-top: 3px;
	font-family: "obvia-narrow-thin", sans-serif;
}
.link-preview {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd; /* subtle border */
    background-color: #f9f9f9; /* light gray background */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* slight shadow for depth */
    border-radius: 5px; /* rounded corners */
}

.link-preview strong {
    color: #333; /* dark grey color for title */
    font-size: 18px; /* slightly larger font size for title */
}

.link-preview p {
    color: #666; /* medium grey color for description */
    font-size: 14px; /* standard font size for description */
}
.status-box {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    width: 80%;
    box-sizing: border-box;
    transition: width 0.3s ease;
}

.user-profile .profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px; /* Space between the image and the text area */
}

.text-and-actions {
    flex-grow: 1; /* Takes the remaining space */
    display: flex;
    flex-direction: column;
}

.status-input {
    width: 100%;
    border: none;
    margin-bottom: 10px;
    padding: 8px;
    box-sizing: border-box; /* Includes padding and border in the width */
    resize: none; /* Disables resizing */
}

.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.media-upload-label img {
    width: 32px;
    cursor: pointer;
}

.post-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
	border-radius: 5px;
    margin-left: 10px;
}
.file-name {
    margin-left: 10px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.dropdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.dropdown {
    height: 40px;
    font-size: 16px;
    padding: 5px;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    transition: display 0.5s;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Ensure tabs match the status-box width */
.tabs {
    display: flex;
    justify-content: flex-start;
    width: 100%; /* Match status-box width dynamically */
    max-width: 70%; /* Ensure it follows the same max width */
    margin: 0 auto;
    padding: 20px 0px 0px 0px;
    border-bottom: none;
}

/* Style tab buttons */
.tab-button {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-bottom: none; /* Prevent double border */
    padding: 10px 20px;
    cursor: pointer;
    flex: 1; /* Makes tabs share equal space */
    text-align: center;
    transition: background-color 0.3s ease, border 0.3s ease;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-weight: bold;
}

/* Active tab */
.tab-button.active {
    background-color: white;
    border-bottom: 1px solid white;
}

/* Ensure tab content aligns properly */
.tab-content {
    display: none;
    padding: 0 20px 20px 20px; /* Keep left/right/bottom padding, remove top */
}

/* Ensure status-box and tabs align properly */
.status-box {
    border: 1px solid #ccc;
    border-radius: 0 0 8px 8px;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 0 auto; /* Center it */
}

/* Wrapper for tabs and content */
.tab-wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 0;
}

/* Ensure tabs touch the status-box */
.tab-content {
    display: none;
    padding: 0;
    margin-top: -1px; /* Ensures tabs visually connect */
}

/* Ensures the tabs visually attach to the status-box */
.status-box {
    border: 1px solid #ccc;
    border-radius: 8px 8px 8px 8px;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hide content initially */
.tab-content {
    display: none;
    padding: 0 2% 20px 2%;
}

/* Show active tab content */
.tab-content.active {
    display: block;
}

@media (max-width: 990px) {
    #content-container {
    display: flex;
    flex-direction: column;
	font-size: 1.00em;
	}
    #left, #right {
        flex: 100%;
		flex-grow: 1;
        order: 2;
        padding: 0px;
    }

    #right {
        margin-top: 0px;
        padding: 0px;
    }

    element.style {
        margin-left: 0px;
    }

    #feed {
        max-width: 100%;
    }

    .post {
		position: relative;
        border-radius: 0;
	}
	.post-image {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}   .split-form-container {
        flex-direction: column; /* Stack children vertically */
    }.status-box {
        width: 100%; /* Increase width to 80% on smaller screens */
    }
}

@media (max-width: 768px) {
    .status-box {
        width: 100%; /* Increase width to 100% on very small screens */
    }
	#content-container {
		font-size: 1.00em;
	}
	.post-media {
    max-width: 100%;
    height: auto;
}
#image-container img {
    padding-bottom: 20px;
}
}