body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Prevent horizontal scrolling on smaller screens */
}

header {
    background-color: #000000;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    max-width: 100px;
    height: auto;
    border: 1px solid #fff;
    border-radius: 50%;
}

header h1 {
    margin: 0;
    text-align: center;
    flex-grow: 1;
}

.post {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    margin: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.post-title {
    font-size: 24px;
    color: #333;
    text-align: center;
}

.post-thumbnail {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid transparent;
    border-radius: 4px;
}

th,
td {
    padding: 10px;
    border: 1px solid #9e9e9e;
    border-radius: 0px;
}

th {
    background-color: #000000;
    color: #fff;
}

.button {
    background-color: #000000;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    cursor: pointer;
    border-radius: 4px;
}

.button:hover {
    background-color: #00000080;
}

.telegram-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.telegram-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(0, 136, 204, 0);
    }
}

.telegram-icon svg {
    fill: #fff;
    width: 30px;
    height: 30px;
}

.post {
    /* Existing styles for .post */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: auto;
    /* Enable horizontal scrolling if the table exceeds the width */
}

.post table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid transparent;
    border-radius: 0px;
    
}

/* Add this CSS to contain the table and enable scrolling */
.table-container {
    width: 70%;
    overflow-x: auto;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .table-container {
        width: 100%;
    }
}
/* Style the "Notes" and "DPP" buttons to be side by side */
table td a.button {
    display: inline-block;
    margin-right: 5px;
    /* Adjust the spacing between buttons as needed */
}

/* Remove the margin from the last button in the cell */
table td a.button:last-child {
    margin-right: 0;
}



table td {
    text-align: center;
    vertical-align: middle;
}