.image-dropzone {
    border: 1px dotted var(--window-background-color);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 15px;
    font-family: 'Positions', sans-serif;
    color: var(--window-background-color);
    font-size: 20px;
    border-radius: 5px;
    background-color: #000000;
}

    .tag-link {
        color: #888888;
    text-decoration: none;
    margin-left: 6px;
}
.tag-link:hover {
    text-decoration: underline;
    color: var(--saturate-color);
}


.image-dropzone.dragover {
    background-color: #090909;
}

.image-preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.image-preview {
    position: relative;
    width: 100px;
    height: 100px;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

textarea {
    height: 80px;
    color: #d8d8d8;
    font-size: 15px;
    background-color: #000 !Important;
}
label {
    color: #888888;
}
.image-preview button {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 12px;
    cursor: pointer;
}
        
        .post-text h1, .post-text h2, .post-text h3 {
    font-family: 'Positions', sans-serif;
    margin: 0.3em 0;
    text-align: left;
    animation: none;
}

.post-text h1 {
    font-size: clamp(3em, 9vw, 4.5em) !important;
}

.post-text p {
    font-size: 16px;
    line-height: 1.6;
}

.post-text a {
    color: var(--window-background-color);
}

.post-text a:hover {
    color: var(--saturate-color);
    text-decoration: underline;
}

label a {
    color: var(--window-background-color);
}

label a:hover {
    color: var(--saturate-color);
    text-decoration: underline;
}


.post-text strong {
    font-weight: bold;
}

.post-text em {
    font-style: italic;
}


        .blog-text-container {
    position: relative; /* Ensures children (like .title) can be positioned absolutely */
    width: 100%; /* Keeps it full width */
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: start; /* Aligns text to the top */
}


@font-face {
    font-family: 'Positions';
   src: url('PositionsByArixbored-Regular%20.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.title {
    position: absolute; /* Sticks to the top of .blog-text-container */
    top: 0px; /* Ensures it stays at the top */
    transform: translateX(-50%); /* Adjusts for centering */
    font-size: clamp(3em, 9vw, 4.5em) !important;
    font-weight: bold;
    filter: url(#meltingFilter);
    text-align: center;
    font-family: 'Positions', sans-serif !important;
    white-space: nowrap; /* Keeps it on one line */
    max-width: 100%;
}

.title-bar-text::after {
    font-family: 'Positions';
    font-size: 20px;
}

.username {
    font-family: 'Positions';
    font-size: 20px;
}

.pagination a {
    font-family: 'Positions';
    font-size: 20px;
}

.tags strong {
    font-family: 'Positions';
    font-size: 16px;
}

.blog-upper {
    margin-bottom: clamp(15px, -3vw, 15px) !important;
    margin-top: clamp(-25px, -3vw, -35px) !important;
}

        /* SVG Filter Optimization */
        svg {
            display: none;
        }



.pagination {
    color: #888888;
    display: flex;
    justify-content: center; /* Center align the pagination */
    align-items: center; 
    gap: 10px; /* Add some space between items */
    margin: 20px 0; /* Add spacing around the pagination */
    padding: 10px;
    border-radius: 5px; /* Rounded corners */
    background-color: #000; /* Dark background color */
}

.pagination a {
    padding: 10px 15px;
    border: 1px solid #888888;
    border-radius: 5px;
    text-decoration: none;
    color: #888888;
    font-weight: bold;
    transition: all 0.3s ease; /* Smooth hover effect */
}

.pagination a:hover {
    border-color: var(--window-background-color);
    color: #fff;
    text-decoration: none;
}

.pagination a.active {
    color: white;
    border-color: var(--window-background-color); /* Slightly darker border for the active page */
    pointer-events: none; /* Disable click on the active page */
}

html, body {
    height: 100%;
    margin: 0; /* Remove default body margin */
}

.backwall {
    display: flex; /* Use flexbox to align children */
    height: 100vh; /* Full viewport height */
}

.blog-all {
    flex: 1; /* Take remaining space */
    overflow-y: auto; /* Enable vertical scrolling */
    box-sizing: border-box; /* Include padding in height calculations */
}

.blog-upper {
    height: 190px !important;
}

.blog-text-container {
    /* Style as needed */
}



body {
  margin: 0;
  position: relative;
  font-size: 14px;
  line-height: 1.2;
  background-color: #000;
}


.window-tab p {
    margin-left: 20px;
    margin-right: 20px;
}

.resize-top {
  cursor: n-resize;
  height: 14px;
  left: 0px;
  position: absolute;
  top: -7px
}

.resize-bottom {
  bottom: -7px;
  cursor: s-resize;
  height: 14px;
  left: 0px;
  position: absolute
}

.resize-left {
  bottom: 0px;
  cursor: w-resize;
  left: -7px;
  position: absolute;
  width: 14px
}

.resize-right {
  bottom: 0px;
  cursor: e-resize;
  position: absolute;
  right: -7px;
  width: 14px
}

.resize-tl {
  cursor: nwse-resize;
  height: 14px;
  left: -7px;
  position: absolute;
  top: -7px;
  width: 14px
}

.resize-bl {
  bottom: -7px;
  cursor: nesw-resize;
  height: 14px;
  left: -7px;
  position: absolute;
  width: 14px
}

.resize-tr {
  cursor: nesw-resize;
  height: 14px;
  right: -7px;
  position: absolute;
  top: -7px;
  width: 14px
}

.resize-br {
  bottom: -7px;
  cursor: nwse-resize;
  height: 14px;
  right: -7px;
  position: absolute;
  width: 14px
}

.backwall {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  position: absolute;
}

.window {
  color: #000;
  border: 2px solid #f1f1f1;
  position: absolute !important;
  box-shadow: inset 1px 1px 0 0 #fff, 5px 5px 0 rgb(0 0 0 / 20%);
  background-color: #000;
}

.window-header {
  color: #000;
  cursor: move;
  height: 16px;
  display: flex;
  padding: 10px;
  box-shadow: inset -1px -1px #404040, inset 1px 1px silver, inset -2px -2px gray, inset 2px 2px #fff, inset -3px -3px silver, inset 3px 3px silver;
  background-color: #f1f1f1;
}

.title-bar-text {
  width: 100%;
  display: flex;
}

.title-bar-text::after {
  content: attr(data-tab);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.window-icon {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  margin-top: 5px;
}

.window-wrapper {
  display: flex;
  align-items: center;
}


.window-fullscreen {
  transition: all .3s ease-in-out;
}

.window-screen {
  width: 100%;
  border: none;
  height: 100%;
}

.window-resizing {
  pointer-events: none;
}



.window-tab {
  display: none;
}

.window-dropdown {
  top: 33px;
  right: 0;
  display: none;
  z-index: 1;
  overflow: auto;
  position: absolute;
  background-color: #f1f1f1;
}



.window-content {
  overflow: hidden;
}


.taskbar {
 display: none;
}



.window-show {
  display: block;
}

.dropdown-show {
  display: block;
}

/*
Experimental mobile apps

@media only screen and (max-width: 360px) {
  .window {
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
  }

  .taskbar {
    color: #000;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
    box-shadow: inset -1px -1px, inset 1px 1px, inset -2px -2px grey, inset 2px 2px #fff, inset -3px -3px silver, inset 3px 3px silver;
    background-color: #f1f1f1;
  }

  .taskbar-item {
    margin-top: 60px;
    width: 25px;
    margin-left: -15px;
    text-indent: 300%;
    white-space: nowrap;
    overflow: hidden;
    height: 55px;
    box-shadow: inset -1px -1px, inset 1px 1px, inset -2px -2px grey, inset 2px 2px #fff, inset -3px -3px silver, inset 3px 3px silver;
    background-color: #f1f1f1;
  }
}
*/

canvas { display: block; }