.acrylic-box {
    border-radius: 20px;
    min-width: 0;
    max-width: calc(100% - 30px);
    margin: 5px;
    padding: 10px 10px 15px 10px;
    background-color: rgba(0, 0, 25, 0.3); /* light gray with transparency */
    backdrop-filter: blur(10px) saturate(100%);
    -webkit-backdrop-filter: blur(10px) saturate(100%);
    border: 1px solid rgba(255, 255, 255, 0.1); /* subtle border like iOS */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}


.acrylic-box hr{
    border: none;
    height: 1px;
    margin: 1px 10px;
    background: linear-gradient(to right, rgba(255,255,255,0.05), rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    opacity: 0.6;
    border-radius: 1px;
}

.acrylic-box h1{
    margin: 10px 0;
    white-space: normal;
    word-wrap: break-word;
    /*color: red; For later consideration*/
}

.acrylic-box p {
    margin: 0 0;
    margin-top: 5px;
    white-space: normal;
    word-wrap: break-word;
}

.acrylic-box > .rounded-img {
    border-radius: 15px !important;
}