:root {
    --background-color: #F0F0F0;
}

body {
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}


.btn-manual {
    background-color: #919297;
    color: white;
    border: none;
}

.btn-manual:hover {
    background-color: #7a7d82;
}

.btn-manual:focus {
    box-shadow: 0 0 0 4px rgba(145, 146, 151, 0.3);
}



#lista-projetos {
    max-height: 420px;
    overflow-y: auto;
}

.credits-section {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.credits-text {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.credits-section img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.credits-section #logo-nativa {
    height: 100px;
    width: auto;
    object-fit: contain;
}

/* Estilos para notificações */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    width: auto;
    max-width: 300px;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification.success {
    background-color: #28a745;
}

.notification.error {
    background-color: #dc3545;
}

.notification.info {
    background-color: #17a2b8;
}

.notification.warning {
    background-color: #ffc107;
    color: #212529;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Loading animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

/* Debug info */
.debug-info {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-family: monospace;
    z-index: 999;
    max-width: 300px;
}

.debug-commands {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #555;
    font-size: 11px;
}
