/* SlStyles.css */
.form-controlx {
    padding: 0.5rem 0.1rem 0.5rem 0.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background-color: var(--card-bg);
    color: var(--dark);
}
.token-preview {
    margin-top: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background-color: #f9f9f9;
}
.token-preview.dark-mode {
    background-color: #2a2a2a;
    border-color: #444;
}
.token-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.token-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
}
.token-name {
    font-size: 1.5rem;
    font-weight: 600;
}
.token-symbol {
    font-size: 1rem;
    color: #666;
    margin-left: 10px;
}
.token-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.detail-item {
    margin-bottom: 10px;
}
.detail-label {
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}
.detail-value {
    word-break: break-all;
}
.contract-address {
    font-family: 'Roboto Mono', monospace;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}
.dark-mode .contract-address {
    background-color: #333;
}
#submit-form, #payment-form, #market-maker-form {
    display: none;
}
.btn-fetch {
    margin-top: 10px;
}

/* Payment section styles */
.payment-section {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
}
.dark-mode .payment-section {
    background-color: #2a2a2a;
    border-color: #444;
}
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.payment-method {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}
.payment-method:hover {
    border-color: #4a6bff;
}
.payment-method.active {
    background-color: #4a6bff;
    color: white;
    border-color: #4a6bff;
}
.payment-details {
    margin-top: 15px;
}
.wallet-connect {
    margin-top: 15px;
}
.wallet-address {
    font-family: 'Roboto Mono', monospace;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    word-break: break-all;
}
.dark-mode .wallet-address {
    background-color: #333;
}

/* Market maker section */
.market-maker-section {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
}
.dark-mode .market-maker-section {
    background-color: #2a2a2a;
    border-color: #444;
}
.volume-tier {
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}
.volume-tier:hover {
    border-color: #4a6bff;
}
.volume-tier.active {
    background-color: #4a6bff;
    color: white;
    border-color: #4a6bff;
}
.volume-tier h4 {
    margin: 0 0 5px 0;
}
.volume-tier p {
    margin: 0;
    font-size: 0.9rem;
}

/* Improved listing process styles */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
}

.dark-mode .info-card {
    background: #2a2a2a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.info-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.dark-mode .info-card-header {
    border-bottom-color: #444;
}

.info-card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.info-card-header i {
    margin-right: 10px;
    color: #4a6bff;
}

.info-card-body {
    padding: 20px;
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.process-steps li:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 28px;
    height: 28px;
    background: #4a6bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    padding-top: 4px;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.requirements-list li:last-child {
    margin-bottom: 0;
}

.requirements-list i {
    color: #4CAF50;
    margin-right: 10px;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .info-section {
        grid-template-columns: 1fr;
    }
    
    .token-details {
        grid-template-columns: 1fr;
    }
}
.tabs-container {
    margin-bottom: 20px;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.tab-button {
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    transition: all 0.3s;
}

.tab-button:hover {
    color: #4a6bff;
}

.tab-button.active {
    color: #4a6bff;
    border-bottom-color: #4a6bff;
}

.tab-content {
    display: none;
}

@media (max-width: 768px) {
    .info-section {
        grid-template-columns: 1fr;
    }
    
    .token-details {
        grid-template-columns: 1fr;
    }

    .tabs-header {
        flex-direction: column;
        border-bottom: none;
    }

    .tab-button {
        border-bottom: none;
        border-left: 3px solid transparent;
        text-align: left;
    }

    .tab-button.active {
        border-left-color: #4a6bff;
        border-bottom: none;
    }
}
/* Loading spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-loading .spinner {
    display: inline-block;
}