.tool-card {
    background: #fff;
    border: 1px solid #e5ebf3;
    border-radius: 16px;
    padding: 35px 35px 10px;
    box-shadow: 0 10px 35px rgba(0, 35, 80, .07)
}

.cron-bnnr img {
    width: 200px
}

.tool-header {
    text-align: center;
    margin-bottom: 30px
}

.tool-header h1 {
    margin: 0 0 10px;
    color: #003b8e;
    font-size: 32px;
    font-weight: 700
}

.tool-header p {
    max-width: 760px;
    margin: auto;
    color: #687587;
    font-size: 15px;
    line-height: 1.7
}

.converter-options-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px
}

.option-group {
    display: flex;
    align-items: center;
    gap: 8px
}

.csv-options-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px;
    margin-bottom: 25px;
    background: #f0f0ff;
    border: 1px solid #d2d2ff;
    border-radius: 12px
}

.options-label {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap
}

.option-group select {
    height: 37px;
    min-width: 130px;
    padding: 0 30px 0 11px;
    border: 1px solid #d5dfed;
    border-radius: 7px;
    background: #fff;
    color: #334155;
    font-size: 12px;
    font-weight: 600;
    outline: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0 40px 0 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%232D3748' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px
}

.option-group select:focus {
    border-color: #0056d6
}

.settings-wrapper {
    position: relative
}

.settings-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #d5dfed;
    border-radius: 7px;
    background: #fff;
    color: #003b8e;
    font-size: 18px;
    cursor: pointer;
    transition: .25s
}

.settings-btn:hover {
    background: #0056d6;
    color: #fff;
    border-color: #0056d6
}

.settings-panel {
    position: absolute;
    top: 50px;
    right: 0;
    width: 350px;
    padding: 20px;
    display: none;
    background: #fff;
    border: 1px solid #dfe8f5;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 35, 80, .15);
    z-index: 1000
}

.settings-panel.active {
    display: block
}

.settings-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 13px;
    border-bottom: 1px solid #edf1f6
}

.settings-title strong {
    color: #333;
    font-size: 15px
}

.settings-close {
    border: 0;
    background: 0 0;
    color: #7a8797;
    font-size: 23px;
    cursor: pointer
}

.setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #edf1f6
}

.setting-row:last-child {
    border-bottom: 0
}

.setting-row strong {
    display: block;
    color: #26364a;
    font-size: 13px;
    margin-bottom: 3px
}

.setting-row small {
    display: block;
    color: #7a8797;
    font-size: 11px
}

.switch {
    position: relative;
    width: 42px;
    min-width: 42px;
    height: 23px
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.slider {
    position: absolute;
    inset: 0;
    background: #cbd5e1;
    border-radius: 30px;
    cursor: pointer
}

.slider:before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: .25s
}

.switch input:checked+.slider {
    background: #0056d6
}

.switch input:checked+.slider:before {
    transform: translateX(19px)
}

.editor-card {
    overflow: hidden;
    margin-bottom: 25px;
    background: #f8fbff;
    border: 1px solid #d5dfed;
    border-radius: 12px
}

.editor-header {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 18px;
    background: #f0f0ff;
    border-bottom: 1px solid #d5dfed
}

.editor-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.editor-title-wrapper span {
    color: #000;
    font-size: 15px;
    font-weight: 600
}

.editor-title-wrapper small {
    color: #7a8797;
    font-size: 11px
}

.upload-btn {
    background: #3737ff;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
    margin: 0;
    text-align: center
}

.upload-btn:hover {
    background: #003f9e;
    color: #fff
}

.editor-area {
    width: 100%;
    height: 390px;
    display: block;
    padding: 20px;
    border: 0;
    outline: 0;
    resize: vertical;
    background: #fff;
    color: #26364a;
    font-family: Consolas, Monaco, "Courier New", monospace;
    font-size: 13px;
    line-height: 1.7
}

.editor-area::placeholder {
    color: #a0aaba
}

.editor-area::-webkit-scrollbar {
    width: 8px
}

.editor-area::-webkit-scrollbar-thumb {
    background: #c2cfe0;
    border-radius: 20px
}

.editor-area::-webkit-scrollbar-track {
    background: #f1f4f8
}

.editor-footer {
    display: flex;
    justify-content: space-between;
    padding: 8px 15px;
    border-top: 1px solid #edf1f6;
    background: #fafcff;
    color: #7a8797;
    font-size: 11px
}

.tool-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 5px
}

.tool-actions .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    min-width: 150px;
}

#message {
    margin-top: 20px
}

#message .alert {
    margin-bottom: 0;
    border-radius: 8px;
    font-size: 13px
}

.faq-section {
    padding: 70px 0
}

.faq-heading {
    margin-bottom: 35px
}

.faq-heading h2 {
    color: #003b8e;
    font-size: 32px;
    font-weight: 700
}

.faq-heading p {
    color: #687587;
    font-size: 15px
}

.accordion-item {
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e3eaf5;
    border-radius: 10px !important
}

.accordion-button {
    padding: 17px 20px;
    background: #fff;
    color: #003b8e;
    font-size: 16px;
    font-weight: 600;
    box-shadow: none !important
}

.accordion-button:not(.collapsed) {
    background: #edf4ff;
    color: #003b8e
}

.accordion-body {
    color: #555;
    font-size: 14px;
    line-height: 1.8
}

.domain-transfer {
    text-align: center;
    background-color: #f0f0ff
}

.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px
}

.step-box {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    margin: 0 10px
}

.step-box span {
    margin-top: 10px;
    font-size: 14px
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #a8a8a8;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 15px
}

.step-box.active .step-icon {
    border-color: #3737ff;
    color: #3737ff
}

.step-box.active span {
    color: #3737ff;
    font-weight: 600
}

.line {
    width: 210px;
    height: 1px;
    background: #a8a8a8;
    margin-bottom: 25px
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color .3s
}

.step-content p {
    font-size: 14px;
    color: #080808
}

.table-body,
.table-body ul:last-child li:first-child {
    border-bottom-left-radius: 15px
}

.table-data ul {
    display: flex;
    margin: 0
}

.table-data ul li {
    width: 33.33%;
    padding: 1rem 2rem;
    margin: 0;
    border-bottom: 1px solid #e2d7ff;
    text-align: center
}

.table-head {
    background: #22b;
    color: #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px
}

.table-body ul:last-child li {
    border-bottom: 0
}

.table-head ul li {
    font-size: 16px;
    font-weight: 600;
    color: #fff
}

.table-body ul li,
ul li a {
    color: #03305d;
    font-size: 16px
}

.table-body {
    background-color: #f0f0ff;
    border-bottom-right-radius: 15px
}

.table-data-2 ul li {
    width: 50% !important
}

.table-data-2 ul li:first-child {
    background-color: transparent
}

.whois-bulit-grw-box {
    border: 1px solid #cfcfff;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    margin: 12px 0
}

.whois-grw-img {
    display: inline-block;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px
}

.whois-bulit-grw-box .wh-img {
    background-color: #d9eeee
}

.whois-bulit-grw-box .vh-img {
    background-color: #f1f0ec
}

.whois-bulit-grw-box .ds-img {
    background-color: #f8e9e0
}

.whois-bulit-grw-box .dl-img {
    background-color: #cee5ff
}

.whois-bulit-grw-box .dea-img {
    background-color: #efe9ff
}

.whois-bulit-grw-box .dns-img {
    background-color: #ffe2e3
}

.whois-grw-img svg {
    width: 40px;
    height: 40px
}

span.whois-grw-tittle {
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0
}

span.whois-grw-data {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
    color: #202020
}

@media (max-width:991px) {
    .tool-card {
        padding: 25px
    }

    .editor-area {
        height: 320px
    }

    .csv-options-bar {
        align-items: flex-start
    }
}

@media (max-width:767px) {
    .json-csv-tool {
        padding: 45px 0
    }

    .tool-card {
        padding: 20px
    }

    .tool-header h1 {
        font-size: 27px
    }

    .csv-options-bar {
        flex-direction: column;
        align-items: stretch
    }

    .converter-options-left {
        flex-direction: column;
        align-items: stretch
    }

    .option-group {
        justify-content: space-between
    }

    .option-group select {
        flex: 1
    }

    .settings-wrapper {
        align-self: flex-end
    }
}

@media (max-width:576px) {
    .cron-bnnr img {
        width: 150px
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 15px;
        padding: 10px
    }

    .step-box {
        min-width: auto
    }

    .tool-header h1 {
        font-size: 25px
    }

    .editor-header {
        flex-direction: column;
        align-items: flex-start
    }

    .upload-btn {
        width: 100%
    }

    .editor-area {
        height: 260px
    }

    .tool-actions {
        flex-direction: column
    }

    .tool-actions .btn {
        width: 100%
    }

    .settings-panel {
        position: fixed;
        top: 50%;
        left: 50%;
        right: auto;
        width: calc(100% - 30px);
        transform: translate(-50%, -50%)
    }
}