body {
    font-family:Helvetica,  Arial, sans-serif;
    color: blue;
}

/* Scrollbar styling */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* For Firefox */
html, body {
    scrollbar-width: thin;
    scrollbar-color: #2563eb transparent;
}

header {
    padding: 1rem;
}

footer {
    padding: 1rem;
}


  .table-container {
    max-width: 100%;
    overflow-x: auto;
    padding: 1rem;
    background:
}
.typography-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin: 1rem 0;
}
/* Column widths */
.typography-table th:nth-child(1),
.typography-table td:nth-child(1) {
    width: 10%;
}
.typography-table th:nth-child(2),
.typography-table td:nth-child(2) {
    width: 10%;
}
.typography-table th:nth-child(3),
.typography-table td:nth-child(3) {
    width: 10%;
}
.typography-table th:nth-child(4),
.typography-table td:nth-child(4) {
    width: 20%;
}
.typography-table th:nth-child(5),
.typography-table td:nth-child(5) {
    width: 50%;
}
.typography-table th, .typography-table td {
    border: 1px solid blue;
    padding: 0.5rem;
    vertical-align: top;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.typography-table td .full-text,
.typography-table td .short-text {
    /* display: inline-block; */
    width: 100%;
}
.typography-table td {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.typography-table td.visible {
    opacity: 1;
}
.typography-table th {
    cursor: pointer;
    background: #fff;
    text-align: left;
    position: relative;
}
.read-more {
    color: blue;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px dotted blue;
}
@media (max-width: 768px) {
    .typography-table thead {
        display: none;
    }
    .typography-table tr {
        display: block;
        margin-bottom: 1rem;
        
    }
    .typography-table td {
        display: block;
        text-align: right;
        padding-left: 50%;
        position: relative;
        min-width: 45vw;
    }
    .typography-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0.5rem;
        width: 45%;
        text-align: left;
        font-weight: bold;
        
    }
}


.move-area {
    position: fixed;
    top: 2rem;
    right: 1rem;
    width: 100px; /* Add a width to ensure it's clickable */
    height: 50px; /* Add a height to ensure it's clickable */
}
.container {
    width: 100%;
}
.eye {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    border: 1px solid blue;
    background: white;
    margin: 0 2px; /* Add some spacing between eyes */
}
.eye:after { /*pupil*/
    position: absolute;
    bottom: 17px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: blue;
    border-radius: 50%;
    content: " ";
    transform-origin: center; /* Add this to make rotation work correctly */
}

.typography-table td {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy easing */
}

.typography-table td:hover {
    transform: scale(1.5) translateY(-2px);
    z-index: 1;
    background: blue;
    color: white;
    transition: all 0.3s ease-out;
}



.typography-table td:hover .read-more {
    color: white!important;
}
