.container {
    max-width: 600px;
    margin: auto;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

.input-group input,
.input-group select,
.input-group button {
    width: 100%;
    padding: 8px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    visibility: hidden;
}

.buttons button , button{
    padding: 10px 30px;
    border-radius: 5px;
    background-color: #84898c;
    color: white;
    font-weight: 500;
}
.output {
    margin-top: 20px;
    height: 500px;
    overflow-y: scroll;
    border: 1px solid #ccc;
    padding: 10px;
}

.message {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.icon {
    margin-right: 10px;
}

.loading {
    display: flex;
    align-items: center;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading span {
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}




/* Tab Navigation */
.nav-tab-wrapper {
    border-bottom: 1px solid #ccc;
    margin-bottom: 1em;
}

.nav-tab {
    display: inline-block;
    padding: 10px 15px;
    margin-right: 2px;
    border: 1px solid #ccc;
    border-bottom: none;
    background: #f1f1f1;
    text-decoration: none;
    color: #0073aa;
    border-radius: 3px 3px 0 0;
}

.nav-tab-active {
    background: #fff;
    color: #000;
    border-bottom: 1px solid #fff;
    border-top: 3px solid #0073aa;
    border-radius: 3px 3px 0 0;
}

.tab-content {
    border: 1px solid #ccc;
    padding: 15px;
    background: #fff;
    border-radius: 0 3px 3px 3px;
}


.supplier-list {
    margin: 0;
    padding: 0;
}

.supplier-item {
    margin-bottom: 15px;
    border-bottom: 1px dotted #84898c;
}

.supplier-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f5f5f5;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.supplier-header span {
    font-weight: bold;
    font-size: 16px;
}

.toggle-sync-form {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #0073aa;
}

.toggle-sync-form:hover {
    color: #005177;
}

.sync-form {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fafafa;
}
