.gba-border {
    background-color: rgb(53, 53, 53);
    border-radius: 6% 6% 45% 45% / 10% 10% 12% 12%;
    margin: auto;
    margin-top: 20px;
    width: fit-content;
    height: fit-content;
    padding: 28px 30px;
    padding-bottom: 28px;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.console-logo {
    padding-top: 12px;
    width: 400px;
}


.info-box {
    background-color: #C8D0DD;
    border: 12px solid #ECEFFE;
    border-bottom: 12px solid #B0B7C7;
    border-right: 12px solid #B0B7C7;
   
    border-radius: 6px;
    padding: 10px;

    box-sizing: content-box;

    width: 850px;

    margin: 30px auto;
    margin-bottom: 10px;
}
.info-box h2 {
    margin: 12px 0;
    font-family: "GameBoy";
    font-size: 20px;
}
.info-box p {
    margin:0 6px;
    line-height: 1em;
}

.quick-ref {
    background-color: #B0B7C7;
}

.type-chart {
    width: 300px;
    image-rendering: crisp-edges;
}

.info-box .move-info-box {
    height: 100px;
}

.battle-icons {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 0 8px;
}

.battle-icons .flex-row {
justify-content: start;
}

.notes {
    width: 500px;
    height: 140px;
    padding: 5px;
    border: 6px solid rgb(176, 183, 199);
    resize: none;
    overflow: auto;
}


.orb {
    width: 40px;
    height: 40px;
    border: 3px rgba(255, 255, 255, 0.3) solid;
    border-radius: 50px;
    background-color: #6c45c1;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.indigo {
    background-color: #6c45c1;
}
.glacier {
    background-color: #91A2BA;
}
.glacier {
    background-color: #91A2BA;
}
.fuchsia {
    background-color: #C68BAE;
}
.black {
    background-color: #222222;
}
.platinum {
    background-color: #A3A4A2;
}
body.platinum {
    background-image: url(../img/page-img/platnum.png);
}
.white {
    background-color: #f8f9fc;
    border: 3px rgba(255, 255, 255, 1) solid;
}
body.white {
    border: none;
}
.orange {
    background-color: #FCA243
}

.custom{ 
    border: 2px solid rgba(114, 114, 114, 0.5);
    background: linear-gradient(180deg,
                rgba(255, 0, 0, 1) 0%,
                rgba(255, 154, 0, 1) 10%,
                rgba(208, 222, 33, 1) 20%,
                rgba(79, 220, 74, 1) 30%,
                rgba(63, 218, 216, 1) 40%,
                rgba(47, 201, 226, 1) 50%,
                rgba(28, 127, 238, 1) 60%,
                rgba(95, 21, 242, 1) 70%,
                rgba(186, 12, 248, 1) 80%,
                rgba(251, 7, 217, 1) 90%,
                rgba(255, 0, 0, 1) 100%);
}


.orb input[type="color" ] {
    flex-grow: 0;
    border: 0;
    outline: 0;
    padding: 0;
    margin: 0;
    border-radius: 100%;
    height: 32px;
    width: 32px; 
    block-size: 32px;
    cursor: pointer;   
}

.orb input[type="color"]:active, .orb input[type="color"]:focus {
    outline: 0;
    border: 0;
}

.orb input[type="color" ]::-webkit-color-swatch,
.orb input[type="color" ]::-moz-color-swatch {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

input[type="color" i]::-webkit-color-swatch-wrapper {
    padding: 0;
}