    
 body {
  cursor: url("/design/pointer12.png"), auto;
    }
    
    a {
    cursor: url("/design/pointer14.png"), pointer;
    }
    
      body{  
  text-align: center;
        font-family: Arial;
        font-size: 20px;
        color: #B3C0C7;
    }
    
    .size { 
        width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
    min-width: 0;
    } 
  
    
    .searchBox {
      position: relative;
    display: flex;
    justify-content: center;
   
    margin: 0 auto;
 width: 800px;
}
#results {
    position: absolute;

    width: 78%;
text-align: center;
    background: #0F1629;
    border: 1px solid #aaa;
    border-radius: 8px;
    z-index: 1000;
    top: calc(100% + 5px);
    left: 0;
}

.resultItem {
     padding: 8px 15px;
    border-bottom: 1px solid #B3C0C7;
    text-align: left;
}

.resultItem:last-child {
    border-bottom: none;
}

       #searchInput {
    width: 83%;
    padding: 8px 12px;
    border: 2px solid #466880;
    border-radius: 8px;
    font-size: 20px;
}

button {
    padding: 8px 16px;
    margin-left: 2px;
    border: 2px solid #466880;
      border-radius: 8px;
    background-color: black;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

       a:link {
  color: #B3C0C7;
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color: #B3C0C7;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color:#B3C0C7;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: #B3C0C7;
  background-color: transparent;
  text-decoration: underline;
}

p {
line-height: 1.2;
    margin: -20px 0 -20px 0;
     color: #DADEE0;
}

.noresults {
margin:0;
}


.default {

    background-image:

    radial-gradient(
            circle at 30% 90%,
            rgba(80,100,200,0.25),
            transparent 15%
        ),

        radial-gradient(
            circle at 70% 85%,
            rgba(80,100,200,0.2),
            transparent 20%
        ),

        linear-gradient(
            to bottom,
            rgba(100,150,180,0.65),
            rgba(10,25,45,0.85)
        );
        
    position: relative;
    overflow: hidden;

    background:
        /* cloudy underwater glow */
        radial-gradient(
            ellipse at 50% 80%,
            rgba(70, 90, 190, 0.35),
            transparent 45%
        ),

        /* top blue light */
        linear-gradient(
            to bottom,
            rgba(100, 150, 180, 0.65),
            rgba(10, 25, 45, 0.85)
        );

    border: 5px solid rgba(220, 225, 220, 0.8);
    border-radius: 25px;

    padding: 20px;

    box-shadow:
        inset 0 0 30px rgba(180,220,255,0.25),
        0 0 15px rgba(200,220,255,0.35);
}

.default::before {

    content: "";

    position: absolute;

    top: 25px;
    bottom: 25px;

    left: 12px;

    width: 8px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(120,140,255,0.35),
            transparent
        );

    border-radius: 50%;

}



.default::after {
 content: "";

    position: absolute;

    bottom: 15px;
    left: 30px;

    width: 15px;
    height: 15px;

    border-radius: 50%;

    border: 4px solid rgba(170,190,255,0.2);

    box-shadow:
        25px -5px 0 -2px rgba(170,190,255,0.3),
        60px 5px 0 -5px rgba(170,190,255,0.2);
        
}

.tableContainer {
     width: max-content;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 auto;

}

#template2 {
    flex: 0 0 260px;
    max-width: 260px;
}

main {
    flex: 0 1 1000px;
    width: 1000px;
    max-width: 1000px;
}


.painterHolder {
    position: relative;
    height: 0;
}

#painter {
    position: absolute;

    top: -75px;
    left: 70%;

    transform: translateX(-50%);

    width: 120px;
    z-index: 10;
}





#painterCharacter{

  position: fixed;

    right: 0;

    top: 50%;
    transform: translateY(-50%);

    width: 200px;

    display: none;

    z-index: 99999;
  
}


#paintWindow {

    display: none;

    position: fixed;

    z-index: 99999;

    animation: popupAppear .25s ease-out;

}

@keyframes popupAppear {

    from {

        transform: scale(.3);

        opacity: 0;

    }

    60% {

        transform: scale(1.08);

    }

    to {

        transform: scale(1);

        opacity: 1;

    }

}

@keyframes popupDisappear {

    from {

        transform: scale(1);

        opacity: 1;

    }

    40% {

        transform: scale(1.05);

    }

    to {

        transform: scale(.2);

        opacity: 0;

    }

}