/* 🌎 Simple, modern social media theme */
html, body {
    background-color: #f5f5f5 !important; /* Light gray background */
    color: #333 !important; /* Dark gray text */
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.signup-button,
.header .signup-link {
  display: none !important;
}


/* 🌟 Main container (centers everything) */
.ui > .columns-area__panels {
    margin-top: 65px !important;
}
/* 🌟 Header */
.ui__header {
    width: 100%;
    height: 70px;
    background: linear-gradient(to right, #89CFF0, #9370DB); /* Light blue to purple gradient */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* 🔹 Mastodon Logo */
.ui__header__logo {
    display: flex;
    align-items: center;
}

/* 🔹 Navigation Links */
.ui__header__links {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Buttons in Header */
.ui__header__links .button {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.ui__header__links .button:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* 🔹 Avatar */
.ui__header__links .account__avatar img {
    border-radius: 50%;
    border: 2px solid white;
}

/* 🌟 Footer */
.link-footer {
    width: 100vw !important;  /* Ensure full viewport width */
    height: 50px !important;
    background: linear-gradient(to right, #89CFF0, #9370DB) !important; /* Light blue to purple gradient */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: bold !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    text-align: center !important;
z-index: 100 !important;
}

.link-footer > a {
    color: #ffffff !important;
}


.link-footer > p:nth-of-type(2) {
    margin-left: 20px !important;
}

/* 🔹 Header bar (Top navigation like Twitter/Facebook) */
.header{
    width: 100%;
    background-color: #ffffff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* 🔹 Logo */
.logo {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

/* 🔹 Navigation Links */
.nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

/* 🏠 Main Content Section */
.main-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-top: 80px;
}

/* 🔹 Sidebar */
.sidebar {
    width: 100px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    height: fit-content;
}

/* Feed Section */
.columns-area--mobile .column, 
.columns-area--mobile .drawer {
    height: calc(100vh - 200px); /* 100vh - (Header: 70px + Footer: 80px) */
    overflow-y: auto; /* Ensures scrollability if content overflows */
}

.feed {
    flex: 1;
    max-width: 700px;
    margin: 0 20px;
}

/* Post Box */
.post-box {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.compose-form > .navigation-bar{
background-color: #ffffff !important;
box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1) !important;
padding: 4px !important;
}

.post-box textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    resize: none;
}

/* Post Button */
.post-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    margin-top: 10px;
}

.post-button:hover {
    background-color: #0056b3;
}

/* Individual Posts */
.post {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.post .username {
    font-weight: bold;
    color: #333;
}

.post .content {
    margin-top: 8px;
    color: #555;
}

/*Like & Comment Buttons */
.post-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.post-actions button {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
}

.post-actions button:hover {
    text-decoration: underline;
}

.create-account-button {
  display: none !important;
}




.user-role-2 {
  --user-role-accent: #000000;
}

.user-role-1 {
  --user-role-accent: #000000;
}

