body {
    font-family: Roboto, sans-serif;
    margin: 0 auto;
    background: #f7f7f7;
    max-width: 1100px;
}

header {
    background: #cd0808;
    color: #fff;
    padding: 15px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 45px;
    font-family: Open Sans, sans-serif;
}

header p {
    margin: 5px 0 0;
    font-size: 18px;
}

nav {
    background: #2c3e50;
    padding: 10px;
    text-align: center;
    font-family: Open Sans, sans-serif;
}

nav a {
    color: #fff;
    margin: 0 12px;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

nav a:hover {
    color: #fff;
    background: #ff6900;
}

.between-ad {
    max-width: 1100px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mobile-menu {
    display: none;
}

.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2c3e50;
    min-width: 110px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
    font-family: Open Sans, sans-serif;
}

.dropdown-content a {
    display: block;
    color: #fff;
    padding: 8px 12px;
    text-align: left;
    margin: 0;
}

.dropdown-content a:hover {
    background-color: #ff6900;
}

.dropdown:hover .dropdown-content {
    display: block;
}

footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s, text-decoration 0.3s;
}

footer a:hover {
    color: #ff6900;
    text-decoration: none;
}

table a {
    text-decoration: none;
}

table a:hover {
    color: red;
}

.post-content {
    max-width: 100%;
    word-wrap: break-word;
    box-sizing: border-box;
}

.post-content table {
    width: 100% !important;
    max-width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    margin-right: 5px;
}

.post-content td,
.post-content th {
    word-break: break-word;
    font-size: 14px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 5px 20px 10px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

a {
    text-decoration: none;
    color: rgb(54, 21, 223);
}

.container li {
    margin-left: -15px;
}

.share-buttons {
  position: fixed;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.share-buttons a img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.share-buttons a img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
    
    header h1 {
    margin: 0;
    font-size: 32px;
    font-family: Open Sans, sans-serif;
    }

    .post-content {
        font-size: 14px;
    }

    .post-content table {
        font-size: 14px;
    }

    .post-content h3,
    .post-content h2 {
        font-size: 18px !important;
    }

    nav {
        padding: 8px;
    }

    nav a {
        margin: 5px 6px;
        padding: 6px 8px;
        font-size: 10px;
    }

    .dropdown-content {
        min-width: 0;
        max-width: 100vw;
        left: 0;
        right: 0;
        width: auto;
    }

    .container {
        max-width: 1100px;
        margin: 0 auto;
        background: #fff;
        padding: 5px 5px 10px 5px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

}

@media (min-width: 601px) and (max-width: 1099px) {
    .container li {
        margin-left: -5px !important;
    }
}

@media (min-width: 1101px) and (max-width: 2024px) {
    .container li {
        margin-left: 0px !important;
    }
}