* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-color: #2d2d2d;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container {
    text-align: center;
    width: 80%;
    max-width: 600px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px;
    background-color: #003366;
    color: #fff;
    border-radius: 7px;
    margin-bottom: 10px;
}
.contato a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}
.contato img {
    width: 40px;
    vertical-align: middle;
    margin-bottom: -14px;
    margin-top: -9px;
}
.logo img {
    width: 140px;
    margin-bottom: -14px;
    margin-top: -9px;
    margin-left: -40px;
}
.formulario {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.linha-inputs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.formulario input, .formulario button {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
}
#nome, #servidor {
    flex: 1;
    width: 100%;
}
.formulario button {
    background-color: #003366;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}
.formulario button:hover {
    background-color: #0055aa;
}
.planilha {
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
}
.linha-cabecalho, .linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #b8b4b4;
}
.status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    margin-right: 15px;
    display: inline-block;
}
.acao .deletar {
    cursor: pointer;
    font-size: 18px;
    color: red;
}

/* 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;
}
@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;
}

/* Estilos para os botões de exportar/importar */
.export-import-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    margin-top: -10px;
    width: 100%;
}

.export-btn-container {
    position: relative;
    width: 49%;
}

.export-btn {
    background-color: #4CAF50;
    padding: 12px;
    font-size: 1.1em;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}
.import-btn {
    background-color: #2196F3;
    padding: 12px;
    font-size: 1.1em;
    width: 49%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.file-input {
    display: none;
}

.export-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #FF0000;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

/* Modal de exportação */
.export-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.export-modal-content {
    background-color: #12233d;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    color: white;
    text-align: center;
}

.export-modal h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #ff9100;
}

.export-modal p {
    margin-bottom: 20px;
    font-size: 1em;
}

.export-modal-note {
    background-color: #1a3a6a;
    padding: 10px;
    border-radius: 5px;
    margin: 15px 0;
    font-size: 0.9em;
    border-left: 4px solid #ff9100;
}

.export-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.export-modal-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    min-width: 120px;
}

.export-pdf-btn {
    background-color: #e74c3c;
    color: white;
}

.export-excel-btn {
    background-color: #2ecc71;
    color: white;
}

.export-both-btn {
    background-color: #3498db;
    color: white;
}

.export-cancel-btn {
    background-color: #95a5a6;
    color: white;
}

.export-modal-input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    font-size: 1em;
}

/* CODIGO ABAIXO E DOS OUTROS SITES*/
.catalogo {
    display: flex;
    gap: 3px;
}
.sug{
    margin-right: 0px;
}
.section {
    background-color:rgb(42, 99, 45);
    padding: 4px;
    display: flex;
    border: 2px solid #333;
    color: #fff;
    border-radius: 7px;
}
.section a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
}
.icon {
    width: 50px;
    height: 45px;
    margin: 2px;
}
a{
    cursor: pointer;
}

#arruma{
    width: 70px;
}
#afast{
    margin-left: 10px;
    margin-right: 10px;
}
#pac-man{
    width: 53px;
    height: 49px;
    margin-top: -2px;
    margin-left: 18px;
    margin-right: 18px;
    margin-bottom: 2px;
}
#macs{
    margin-left: 10px;
    margin-right: 10px;
    width: 65px;
    height: 65px;
    margin-top: -9px;
    margin-bottom: -8px;
}
#suts{
    margin-left: 10px;
    margin-right: -5px;
}
a{
    cursor: pointer;
}
#sup{
    margin-left: 28px;
    margin-right: -30px;
}
#sup1{
    margin-left: 20px;
    margin-right: -30px;
}

/* Media queries para responsividade */
@media (max-width: 600px) {
    .acao .deletar {
        font-size: 16px;
    }
    .status {
        width: 10px;
        height: 10px;
    }
    .container {
        width: 90%;
        max-width: 950px;
    }
    .catalogo {
        gap: 1px;
    }
    #sug{
        margin-left: -1px;
        margin-right: 0px;
    }
    .section {
        padding: 3px;
        border: 1px solid #333;
    }
    .section a {
        font-size: 8px;
    }
    .icon {
        width: 25px;
        height: 25px;
    }
    #arruma{
    width: 45px;
    }
    #afast{
    margin-left: 10px;
    margin-right: 10px;
    }
    #pac-man{
    width: 29px;
    height: 29px;
    margin-left: 12px;
    margin-right: 12px;
    margin-top: -0px;
    margin-bottom: 1px;
    }
    #macs{
        width: 30px;
        height: 30px;
        margin-top: 0;
        margin-bottom: 0;
    }
    .export-modal-buttons {
        flex-direction: column;
    }
    .export-modal-btn {
        width: 100%;
    }
    .logo{
        display: none;
    }
    .container h1{
        font-size: 18px;
        margin-left: -1px;
    }
    .linha-cabecalho div {
        font-size: 10px;
    }
    #listaClientes{
        font-size: 10px;
    }

    .export-btn {
        background-color: #4CAF50;
        padding: 12px;
        font-size: 1.1em;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    .import-btn {
        background-color: #2196F3;
        padding: 12px;
        font-size: 1.1em;
        width: 49%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    

}

@media (min-width: 300px) and (max-width: 80px) {
    .acao .deletar {
        font-size: 10px;
    }

    .status {
        width: 7px;
        height: 7px;
    }
    
    .section a{
        font-size: 7px;
    }
    
    #sup{
        margin-left: 23px;
        margin-right: -28px;
    }
    
    #pac-man{
        margin-left: 20px;
        margin-right: 20px;
    }
    
    #macs{
        width: 30px;
        height: 30px;
        margin-top: -3px;
        margin-bottom: -3px;
    }
    
    #exportButton, #importButton {
        font-size: 0.8em;
        padding: 8px;
    }

    .export-btn {
        background-color: #4CAF50;
        padding: 120px;
        font-size: 1.1em;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    .import-btn {
        background-color: #2196F3;
        padding: 12px;
        font-size: 1.1em;
        width: 49%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s;
    }
}