@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.chart-container {
    position: relative;
    height: 400px;
    width: 100%;
}

.trade-panel {
    transition: all 0.3s ease;
}
.trade-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
}

/* Signal generator styles */
.toggle {
    appearance: none;
    width: 3.5rem;
    height: 1.75rem;
    background: #e5e7eb;
    border-radius: 9999px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
}

.toggle:checked {
    background: #3B82F6;
}

.toggle:after {
    content: '';
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background: white;
    border-radius: 50%;
    transition: all 0.2s;
}

.toggle:checked:after {
    left: calc(100% - 1.5rem);
}

/* Range slider styles */
.range {
    -webkit-appearance: none;
    height: 0.5rem;
    background: #e5e7eb;
    border-radius: 0.25rem;
    outline: none;
}

.range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    background: #3B82F6;
    border-radius: 50%;
    cursor: pointer;
}

.range::-moz-range-thumb {
    width: 1.25rem;
    height: 1.25rem;
    background: #3B82F6;
    border-radius: 50%;
    cursor: pointer;
}

/* Select dropdown styles */
.select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}
#signal-output {
    min-height: 200px;
    background: #1e293b;
    padding: 1rem;
    border-radius: 0.5rem;
    font-family: 'Fira Code', monospace;
    color: #f8fafc;
}
.rounded-xl {
    border-radius: 1rem;
}

.shadow-lg {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}