body {
    background-color: #202020;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Estilos para a faixa */
.banner {
    width: 100%;
    height: 45px;
    background-color: #0073e6;
    color: white;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}
.marquee {
    display: flex;
    position: absolute;
    height: 100%;
    align-items: center;
}
.marquee-container {
    display: flex;
    animation: marquee 80s linear infinite;
}
.marquee-text {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 8px; /* Espaço entre os textos */
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee a {
    color: #ffdd00;
    font-weight: bold;
    text-decoration: none;
}
.marquee a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 600px; /* Aumenta a largura do container */
    text-align: center;
    border: 2px solid #0080ff;
    padding: 20px;
    border-radius: 8px;
    background-color: #333333;
}
h1 {
    color: #ffffff;
}
.input-group {
    display: flex;
    margin-bottom: 15px;
}
input[type="text"] {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #0080ff;
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    background-color: #444444;
    color: #fff;
}
button {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 0 4px 4px 0;
    color: #fff;
}
#addButton {
    background-color: #0080ff;
}
.draw-button {
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    font-size: 18px;
    background-color: #28a745;
    border-radius: 4px;
}
.list-container {
    margin-top: 20px;
    border-top: 1px solid #00bfff;
    padding-top: 10px;
    max-height: 200px;
    overflow-y: auto;
}
.list-header {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 10px;
}
.list-header span{
margin-left: 15px;
margin-right: 15px;
}
.list-item {
    display: flex;
    justify-content: space-between;
    background-color: #444444;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 16px;
}
.delete-button {
    background-color: #ff4d4d;
    color: #fff;
    border: none;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
}
.countdown-display {
    font-size: 26px; /* Aumenta o tamanho da fonte */
    color: #28a745; /* Cor verde */
    font-family: 'Arial Black', sans-serif;
    margin-top: 20px;
}
.winner-display {
    font-size: 18px; /* Aumenta o tamanho */
    font-weight: bold; /* Negrito */
    color: #ffffff; /* Cor branca */
    padding: 15px;
    background-color: #555555;
    border: 2px solid #00ff3c;
    border-radius: 8px;
}

/* Classe personalizada para o texto "Vencedor" */
.ven-tam {
    color: #00f83a;
    margin-right: 10px;
    font-size: 25px;
}
.reset-button {
    display: none;
    background-color: #ff0000;
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    font-size: 18px;
}
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ffc107;
    animation: fall 4s linear infinite;
    border-radius: 50%;
    opacity: 0.8;
}
.search-container {
    margin-top: 20px;
    width: 96%;
}
.search-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #0080ff;
    border-radius: 4px;
    outline: none;
    background-color: #444444;
    color: #fff;
    border-radius: 4px !important;
    border: 2px solid #0080ff !important;
}
.search-results {
    margin-top: 20px;
    padding: 10px;
    background-color: #555555;
    border: 2px solid #0080ff;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
}
.confirm-box {
    display: none; /* Oculta inicialmente */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    padding: 20px;
    background-color: #333333;
    border: 2px solid #0080ff;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}
.confirm-box button {
    margin: 10px;
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
}
#confirmYes, #resetConfirmYes, #dupConfirmYes {
    background-color: #28a745;
}
#confirmNo, #resetConfirmNo, #dupConfirmNo {
    background-color: #ff4d4d;
}
.confirm-box button:hover {
    opacity: 0.8;
}

@keyframes fall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(50vh) translateX(-30px) rotate(180deg);
    }
    100% {
        transform: translateY(100vh) translateX(30px) rotate(360deg);
        opacity: 0;
    }
}

/* CODIGO ABAIXO E DOS OUTROS SITES*/
.catalogo {
    display: flex;
    gap: 2px;
}
.sug{
    margin-right: -0px;
}
section {
    background-color:rgb(42, 99, 45);
    padding: 3px;
    display: flex;
    border: 2px solid #333;
    color: #fff;
    border-radius: 7px;
}
section a {
    text-decoration: none;
    color: #ffffff;
    font-size: 13px;
}
.icon {
    width: 48px;
    height: 45px;
    margin: 0px;
}
#fatu{
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}
.fotos{
    width: 70px;
    height: 50px;
    margin-top: -5px;
}
.foto{
    width: 50px;
    height: 50px;
    margin-top: -7px;
    margin-bottom: 3px;
    padding-left: 16px;
    padding-right: 16px;
}
#pac-man{
margin-left: 0px;
margin-right: 0px;
}
#macs{
margin-left: 10px;
margin-right: 10px;
}
a{
    cursor: pointer;
    padding: 8px;
}

/* Estilo da caixa de confirmação */
.confirm-box.small {
    width: 280px;
}

/* Media query para telas menores */
@media (max-width: 600px) {
.container {
    width: 100%;
    max-width: 343px;
    padding: 15px;
}
span{
    font-size: 14px;
}
.list-header span{
font-size: 13px;
margin-left: 10px;
margin-right: 10px;
}
.delete-button{
    font-size: 11px;
}
.ven-tam{
    font-size: 22px;
}

.catalogo {
    display: flex;
    gap: 1px;
}
.sug{
margin-left: -3px;
margin-right: 0px;
}
section {
    background-color:rgb(42, 99, 45);
    padding: 1px;
    display: flex;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
}
section a {
    text-decoration: none;
    color: #ffffff;
    font-size: 8px;
}
.icon {
    width: 25px;
    height: 25px;
}
#fatu{
    width: 23px;
    height: 23px;
    margin-bottom: 3px;
    margin-top: -0px;
}
.fotos{
    width: 40px;
    height: 25px;
    margin-top: 0px;
}
.foto{
    width: 26px;
    height: 26px;
    margin-top: -2px;
    margin-bottom: 3px;
    padding-left: 11px;
    padding-right: 11px;
}
#pac-man{
margin-left: 0px;
margin-right: 0px;
}
#macs{
    width: 33px;
    height: 30px;
margin-left: 2px;
margin-right: 2px;
margin-top: -5px;
}
a{
    cursor: pointer;
    padding: 6px;
}
.container h1{
    font-size: 23px;
}
.search-container {
    margin-top: 20px;
    width: 93%;
}
}
