/* everything*/

body{
    background-color: #262323;
    color: #bfd6cb;
    padding: 2%;
}

a, a:hover, a:visited, a:active {
  color: #bfbfff;
  text-decoration: none;
 }

asci{
    font-size: 1px;
}

/* expandable text */
.expandable-title { 
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    font-size: large;
}

.expandable-title:hover {
    background-color: #1a55fd10;
}

.arrow {
    transition: transform 0.3s ease;
}

.expandable-title.expanded .arrow {
    transform: rotate(180deg);
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
    padding: 0 10px;
    background-color: #3e3e3e;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3); 
    opacity: 0;
    display: block; /* Always block, visibility controlled via height/opacity */
}

.expandable-content.expanded {
    max-height: 1000px; /* Set to a larger value, or use 500px for smaller content */
    padding: 10px;
    opacity: 1;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .expandable-content.expanded {
        max-height: 800px; /* Adjust max-height for mobile */
    }
}

#exp-text {
    font-size: 14px;
    color: #bfd6cb;
}