﻿.word-wrap-box {
    flex: 0 0 200px;
    max-width: 200px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}

.dropdown-menu .dropdown-item-highlight {
    background-color: var(--bs-tertiary-bg);
}

.open-pack-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.pack-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.pack-image {
    max-height: 300px;
    object-fit: contain;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.stats-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    background: #1e1e1e;
    border-radius: 12px;
    padding: 1rem;
    color: #f1f1f1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    margin: 1rem auto;
    max-width: 600px;
    text-align: center;
}

.stat h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #9cccf0;
}

.stat p {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
}

.collection-container {
    max-height: 40vw;
    max-width: 100%;
    margin: 0 auto;
    overflow-y: auto;
    padding: 10px;
    border: 2px solid #333;
    border-radius: 12px;
    background: #1e1e1e;
}

