body {
    background-color: black;
}

td, tr, p{
    margin: 0px;
    padding: 0px;
}

ol {
    counter-reset: item -1;
    list-style-type: none;
}
  
li::before {
    counter-increment: item;
    content: counter(item, decimal-leading-zero) " ";
}

.control-button{
    border-radius: 10px;
    padding: 10px 20px;
    width: 18%;
    outline: none;
    border: none;
    box-shadow: 0 6px #999;
    margin: 5px;
    background-color: #fccde2;
    font-weight: bold;
}

.control-button:active {
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

.pressed{
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

.nav-button{
    border-radius: 10px;
    padding: 10px 20px;
    width: 8%;
    outline: none;
    border: none;
    box-shadow: 0 6px #999;
    margin: 5px;
    background-color: #fccde2;
    position: absolute;
    top: 4px;
}

.nav-button:active {
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

.screen{
    width: 100%;
    height: 120px;
    margin: auto;
}

.record{
    width: 392px;
    height: 236px;
    border: 2px solid white;
    position: relative;
}
.record img{
    width: 200px;
    max-width: 200px;
    max-height: 200px;
    margin: 0px 10px;
}

.record p{
    margin: 0px 10px 10px 10px;
    text-align: center;
    font-size: 1rem;
    color: white;
    text-transform: capitalize;
    max-width: 380px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.record ol{
    margin: 0px 0px 10px 0px;
    font-size: 0.7rem;
    color: white;
    position: absolute;
    left: 50%;
    top: 30px;
    text-transform: capitalize;
}

.buttongroup{
    display: flex;
    justify-content: space-between;
}

.infobox{
    color: red;
    font-size: 1rem;
    margin: 0 10px;
    font-family: "Sixtyfour Convergence", sans-serif;
}

.d-none{
    display: none !important;
}

.logo{
    position: relative;
}

.logo p{
    background-image: linear-gradient(45deg, #ffb3ba, #c49c6e, #bfbf76, #77b084, #ff7e74, #3b82f6, #c084fc, #db2777);
    color: transparent;
    -webkit-background-clip: text; /* Edge, Chrome */
    background-clip: text; /* Safari, FF */
    animation: gradientAnimation 8s linear infinite;
    animation-direction: alternate;
    background-size: 150% 100%;
    font-weight: 800; 
    font-size: 3rem;
    text-align: center;
    font-family: "Atomic Age", system-ui;
    font-style: normal;
    text-transform: uppercase;
    height: 60px;
}

  
@keyframes gradientAnimation {
    0% {
        background-position: 0;
    }
    to {
        background-position: 100%;
    }
}

.control{
    width: 100%;
    height: 60px;
    border: 2px solid white;
    margin: 0px;
}

#content{
    background-color: black;
    margin: auto;
    width: 800px;
    height: 600px;
}

.singlerecord{
    border: 2px solid white;
    padding: 10px;
    width: 772px;
    height: 456px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.singlerecord p{
    margin: 0px 10px 10px 10px;
    text-align: center;
    font-size: 1.3rem;
    color: white;
    text-transform: capitalize;
    max-width: 380px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.singlerecord ol{
    margin: 0px 0px 10px 0px;
    font-size: 0.7rem;
    color: white;
    position: absolute;
    left: 50%;
    top: 50px;
    max-width: 380px;
}

.singlerecord img{
    width: 370px;
    max-width: 370px;
    max-height: 370px;
}

.numpad{
    display: flex;
    align-items: flex-end;
}

.pad-button{
    border-radius: 10px;
    padding: 10px 20px;
    outline: none;
    border: none;
    box-shadow: 0 6px #999;
    margin: 5px;
    background-color: #fccde2;
    font-weight: 800;
    text-align: center;
    position: relative;
    flex-basis: 45px;
}

.search .pad-button{
    top: -4px;
}

.pad-button i{
    margin: none;
}

.pad-button:active {
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

.scrolling-wrapper-flexbox {
    max-width: 530px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: auto;
    &::-webkit-scrollbar {
        display: none;
      }
    -webkit-overflow-scrolling: touch;
}

.scrolling-wrapper-flexbox > button{
    flex: 0 0 auto;
}
