.blurred-background {
    filter: blur(5px);
    pointer-events: none;
}

.no-scroll {
    height: 100%;
    overflow: hidden;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.large-pokemon-card {
    background: white;
    border: 2px solid #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 11;
    width: 320px;
    overflow: auto;
    text-align: center;
}

.card-header-toggled {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    padding-right: 12px;
    border-bottom: 3px solid black;
    width: 100%;
    color: white;
}

.toggled-id {
    font-size: 18.72px;
}

.pokemon-title {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.close-button {
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.6s ease-in-out;
    background-color: white;
    border-radius: 25px;
}
  
.close-button:hover {
    transform: rotate(360deg);
}

.pokemon-face-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.pokemon-toggled-image {
    width: 208px;
}

.prev-next-button {
    transition: transform 0.3s ease-in-out;
    background-color: white;
    border-radius: 25px;
}

.prev-next-button:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.navbar-info {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-bottom: 8px;
}

.info-header {
    background-color: white;
    border: 2px solid #2c2c2c;
    border-radius: 21px;
    padding: 8px 12px;
    width: 98px;
    transition: transform 0.3s ease-in-out;
}

.info-header:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.main-stats-content {
    width: 100%;
    padding: 0 8px;
    display: flex;
    flex-direction: column;
}

.main-content-border {
    border: 2px solid #2c2c2c;
    border-radius: 21px;
    background-color: white;
    padding: 5px;
}

.main-stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 4px 0px;
}

.abilites {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.evo-chain {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 0px;
}

.evo-chain-item {
    text-align: center;
    font-size: 16px;
}

.evo-chain-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
}

.evo-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.evo-arrow span {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.stats-content {
    width: 100%;
    padding: 0 8px;
}

.stats-content-border {
    border: 2px solid #2c2c2c;
    border-radius: 21px;
    background-color: white;
    padding: 5px 0px;
}

.stats-position {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 4px 10px;
}

.stats-beam {
    width: 160px;
    border: 2px solid #2c2c2c;
    border-radius: 21px;
}

.stat {
    background-color: aqua;
    border-radius: 22px;
    max-width: 100%;
}