.aiota-fxcalc {
    background: #0f172a;
    color: #e5e7eb;
    border-radius: 10px;
    padding: 5px;
    font-family: inherit;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    max-width: 1180px;
    margin: 0 auto;
   
}

.aiota-fxcalc * {
    box-sizing: border-box;
}

.aiota-fxcalc-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 22px;
}

.aiota-fxcalc-tabs {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 20px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aiota-fxcalc-tab {
    width: 100%;
    text-align: left;
    border: 0;
    background: #020617;
    color: #cbd5e1;
    padding: 12px 14px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s ease;
}

.aiota-fxcalc-tab:hover,
.aiota-fxcalc-tab.active {
    background: #1A1E31;
    color: #ffffff;
}

.aiota-fxcalc-content {
    background: rgba(2, 6, 23, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 20px;
    padding: 24px;
    min-height: 520px;
}

.aiota-fxcalc-panel {
    display: none;
}

.aiota-fxcalc-panel.active {
    display: block;
}

.aiota-fxcalc h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.3;
}

.aiota-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.aiota-fxcalc label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #cbd5e1;
    font-size: 14px;
}

.aiota-fxcalc input,
.aiota-fxcalc select,
.aiota-fxcalc textarea {
    width: 100%;
    background: #020617;
    color: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
    font-size: 15px;
}

.aiota-fxcalc textarea {
    min-height: 130px;
    resize: vertical;
}

.aiota-fxcalc input:focus,
.aiota-fxcalc select:focus,
.aiota-fxcalc textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.14);
}

.aiota-calc-btn {
    margin-top: 20px;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    color: #ffffff;
    border: 0;
    border-radius: 16px;
    padding: 13px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}

.aiota-result {
    margin-top: 20px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    padding: 16px;
    color: #e2e8f0;
    line-height: 1.8;
    min-height: 58px;
}

.aiota-result strong {
    color: #ffffff;
}

.aiota-note {
    color: #94a3b8;
    margin-bottom: 14px;
}

.aiota-fxcalc-mobile-head {
    display: none;
    margin-bottom: 14px;
}

.aiota-fxcalc-menu-btn {
    width: 100%;
    background: #020617;
    color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 14px;
    font-size: 15px;
    cursor: pointer;
    text-align: left;
}

@media (max-width: 900px) {
    .aiota-fxcalc {
        padding: 16px;
        border-radius: 20px;
    }

    .aiota-fxcalc-mobile-head {
        display: block;
    }

    .aiota-fxcalc-layout {
        grid-template-columns: 1fr;
    }

    .aiota-fxcalc-tabs {
        display: none;
    }

    .aiota-fxcalc-tabs.open {
        display: flex;
    }

    .aiota-fxcalc-content {
        padding: 18px;
        min-height: auto;
    }

    .aiota-grid {
        grid-template-columns: 1fr;
    }
}