/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    color: #333;
    line-height: 1.6;
}

/* Navigation Bar */
nav {
    background: transparent;
    padding: 15px 20px;
    color: white;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
    background-color: #555;
    color: #fff;
}

/* Article Section */
article {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Headings */
h1 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Buttons */
button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #555;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav a {
        display: block;
        margin: 10px 0;
    }

    article {
        margin: 20px;
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }
}
/* জুম ইন অ্যানিমেশন */
@keyframes zoomIn {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* post-content ক্লাসে অ্যানিমেশন প্রয়োগ */
.post-content {
    animation: zoomIn 0.7s ease-in-out;
    will-change: transform, opacity; /* পারফরম্যান্স অপ্টিমাইজেশন */
    backface-visibility: hidden; /* রেন্ডারিং ইস্যু ঠিক করে */
    transform: translate3d(0, 0, 0); /* হার্ডওয়্যার এক্সিলারেশন সক্ষম করে */
}

/* মোবাইল ডিভাইসে অ্যানিমেশন হালকা*/
@media (max-width: 768px) {
    .post-content {
        animation: zoomIn 0.7s ease-in-out;
    }
}


.tissue-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6rem 0;
  table-layout: fixed;
  word-wrap: break-word;
  overflow-wrap: break-word;
  border: 2px solid #444; /* বর্ডার স্পষ্ট করার জন্য */
}

.tissue-table th, .tissue-table td {
  border: 2px solid #444; /* প্রতিটি ঘরের বর্ডার স্পষ্ট করা */
  padding: 8px;
  text-align: center;
  vertical-align: center;
  white-space: normal;
}

.tissue-table th {
  background-color: #333;
  color: white;
}

@media (max-width: 600px) {
  .tissue-table {
    font-size: 12px;
  }
}
