body {
    color: var(--white);
}

.title {
    font-family: "RoundStyle";
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 20px;
}

.product-image {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Ensure all images are responsive and don't cause horizontal scrolling */
#file-info-container img {
    max-width: 100%;
    width: auto;
    height: auto;
}

/* Additional mobile-specific image constraints */
@media (max-width: 768px) {
    .product-image {
        max-width: 90vw;
    }
    
    #file-info-container img {
        max-width: 90vw;
    }
}

.price {
    font-size: 2rem;
}

#file-info-container {
    background-color: rgba(0, 0, 0, 0.9);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0 !important;
    padding-bottom: 2rem;
}

/* Add extra spacing above audio element for special files */
.sample audio {
    margin-top: 1rem;
}

/* Breadcrumb styling for dark theme */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
    opacity: 0.7;
}

.breadcrumb-item a {
    color: var(--light-purple);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--white);
}

/* Mobile padding for better spacing */
@media (max-width: 767.98px) {
    #file-info-container .col-12 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}