/* =========================================================
   REMOVE DUPLICATE LINES TOOL
   CSS PART 1
   Base, Layout, Intro, Tool Card, Header, Editors
========================================================= */

:root {
    --rdl-primary: #2563eb;
    --rdl-primary-dark: #1d4ed8;
    --rdl-primary-soft: #eff6ff;
    --rdl-secondary: #0f172a;
    --rdl-text: #334155;
    --rdl-muted: #64748b;
    --rdl-border: #dbe3ee;
    --rdl-border-dark: #cbd5e1;
    --rdl-bg: #f8fafc;
    --rdl-white: #ffffff;
    --rdl-success: #16a34a;
    --rdl-success-soft: #f0fdf4;
    --rdl-danger: #dc2626;
    --rdl-danger-soft: #fef2f2;
    --rdl-warning: #d97706;
    --rdl-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
    --rdl-shadow-md: 0 18px 50px rgba(15, 23, 42, 0.10);
    --rdl-radius-sm: 10px;
    --rdl-radius-md: 16px;
    --rdl-radius-lg: 24px;
    --rdl-transition: 0.2s ease;
}

/* Main Wrapper */
.rdl-tool-wrapper,
.rdl-tool-wrapper * {
    box-sizing: border-box;
}

.rdl-tool-wrapper {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 18px 70px;
    color: var(--rdl-text);
    font-family: inherit;
    line-height: 1.7;
}

.rdl-tool-wrapper button,
.rdl-tool-wrapper textarea,
.rdl-tool-wrapper input {
    font: inherit;
}

.rdl-tool-wrapper button {
    cursor: pointer;
}

.rdl-tool-wrapper svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Intro Section */
.rdl-intro-section {
    max-width: 850px;
    margin: 0 auto 34px;
    text-align: center;
}

.rdl-intro-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 7px 14px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: var(--rdl-primary-soft);
    color: var(--rdl-primary-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.rdl-intro-section h2 {
    margin: 0 0 14px;
    color: var(--rdl-secondary);
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.16;
    letter-spacing: -0.035em;
}

.rdl-intro-section p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--rdl-muted);
    font-size: 17px;
    line-height: 1.8;
}

/* Tool Card */
.rdl-tool-card {
    overflow: hidden;
    border: 1px solid var(--rdl-border);
    border-radius: var(--rdl-radius-lg);
    background: var(--rdl-white);
    box-shadow: var(--rdl-shadow-md);
}

/* Tool Header */
.rdl-tool-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 26px;
    border-bottom: 1px solid var(--rdl-border);
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.10), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.rdl-tool-title {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

.rdl-tool-icon {
    display: inline-flex;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 12px;
    border-radius: 15px;
    background: var(--rdl-primary);
    color: var(--rdl-white);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.rdl-tool-title h2 {
    margin: 0 0 3px;
    color: var(--rdl-secondary);
    font-size: 23px;
    line-height: 1.3;
}

.rdl-tool-title p {
    margin: 0;
    color: var(--rdl-muted);
    font-size: 14px;
    line-height: 1.55;
}

.rdl-new-text-btn {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 10px 17px;
    border: 1px solid var(--rdl-border-dark);
    border-radius: 10px;
    background: var(--rdl-white);
    color: var(--rdl-secondary);
    font-size: 14px;
    font-weight: 700;
    transition:
        border-color var(--rdl-transition),
        color var(--rdl-transition),
        background var(--rdl-transition),
        transform var(--rdl-transition);
}

.rdl-new-text-btn:hover {
    border-color: var(--rdl-primary);
    background: var(--rdl-primary-soft);
    color: var(--rdl-primary-dark);
    transform: translateY(-1px);
}

.rdl-new-text-btn:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.20);
    outline-offset: 2px;
}

/* Editor Area */
.rdl-editor-section {
    padding: 25px 26px 10px;
}

.rdl-editor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 11px;
}

.rdl-editor-header label {
    color: var(--rdl-secondary);
    font-size: 15px;
    font-weight: 800;
}

.rdl-editor-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.rdl-small-btn {
    min-height: 35px;
    padding: 7px 13px;
    border: 1px solid var(--rdl-border-dark);
    border-radius: 8px;
    background: var(--rdl-white);
    color: var(--rdl-text);
    font-size: 13px;
    font-weight: 700;
    transition:
        border-color var(--rdl-transition),
        background var(--rdl-transition),
        color var(--rdl-transition),
        transform var(--rdl-transition);
}

.rdl-small-btn:hover {
    border-color: var(--rdl-primary);
    background: var(--rdl-primary-soft);
    color: var(--rdl-primary-dark);
    transform: translateY(-1px);
}

.rdl-small-btn:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.18);
    outline-offset: 2px;
}

.rdl-danger-btn {
    border-color: #fecaca;
    background: var(--rdl-danger-soft);
    color: var(--rdl-danger);
}

.rdl-danger-btn:hover {
    border-color: var(--rdl-danger);
    background: #fee2e2;
    color: #b91c1c;
}

.rdl-textarea {
    display: block;
    width: 100%;
    min-height: 250px;
    resize: vertical;
    padding: 17px 18px;
    border: 1px solid var(--rdl-border-dark);
    border-radius: var(--rdl-radius-md);
    outline: none;
    background: #ffffff;
    color: var(--rdl-secondary);
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        Menlo,
        monospace;
    font-size: 15px;
    line-height: 1.7;
    tab-size: 4;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.025);
    transition:
        border-color var(--rdl-transition),
        box-shadow var(--rdl-transition),
        background var(--rdl-transition);
}

.rdl-textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.rdl-textarea:hover {
    border-color: #94a3b8;
}

.rdl-textarea:focus {
    border-color: var(--rdl-primary);
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.11),
        inset 0 1px 2px rgba(15, 23, 42, 0.025);
}

.rdl-textarea[readonly] {
    background: #fbfdff;
}

.rdl-text-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 20px;
    padding: 10px 4px 0;
    color: var(--rdl-muted);
    font-size: 13px;
}

.rdl-text-stats span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.rdl-text-stats strong {
    color: var(--rdl-secondary);
    font-weight: 800;
}

/* Output Section */
.rdl-output-section {
    padding-bottom: 27px;
}

.rdl-output-section .rdl-textarea {
    min-height: 230px;
}

/* Basic Disabled States */
.rdl-tool-wrapper button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}

/* Text Selection */
.rdl-tool-wrapper ::selection {
    background: rgba(37, 99, 235, 0.18);
    color: var(--rdl-secondary);
}

/* Responsive: Tablet */
@media (max-width: 800px) {
    .rdl-tool-wrapper {
        padding-right: 14px;
        padding-left: 14px;
    }

    .rdl-tool-header {
        align-items: flex-start;
        padding: 21px 20px;
    }

    .rdl-editor-section {
        padding-right: 20px;
        padding-left: 20px;
    }

    .rdl-textarea {
        min-height: 225px;
    }
}

/* Responsive: Mobile */
@media (max-width: 600px) {
    .rdl-tool-wrapper {
        padding-top: 14px;
        padding-bottom: 50px;
    }

    .rdl-intro-section {
        margin-bottom: 24px;
    }

    .rdl-intro-section h2 {
        font-size: 31px;
    }

    .rdl-intro-section p {
        font-size: 15px;
        line-height: 1.7;
    }

    .rdl-tool-card {
        border-radius: 18px;
    }

    .rdl-tool-header {
        flex-direction: column;
        gap: 16px;
    }

    .rdl-tool-title {
        align-items: flex-start;
    }

    .rdl-tool-icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
    }

    .rdl-tool-title h2 {
        font-size: 20px;
    }

    .rdl-new-text-btn {
        width: 100%;
    }

    .rdl-editor-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .rdl-editor-actions {
        justify-content: flex-start;
        width: 100%;
    }

    .rdl-small-btn {
        flex: 1 1 auto;
    }

    .rdl-textarea {
        min-height: 210px;
        padding: 14px;
        font-size: 14px;
    }

    .rdl-text-stats {
        gap: 7px 13px;
        font-size: 12px;
    }
}
/* =========================================================
   REMOVE DUPLICATE LINES TOOL
   CSS PART 2
   Options, Main Button, Status, Results, Privacy
========================================================= */

/* Options Panel */
.rdl-options-panel {
    margin: 18px 26px 0;
    padding: 22px;
    border: 1px solid var(--rdl-border);
    border-radius: var(--rdl-radius-md);
    background: linear-gradient(180deg, #fbfdff 0%, #f8fafc 100%);
}

.rdl-options-heading {
    margin-bottom: 17px;
}

.rdl-options-heading h3 {
    margin: 0 0 4px;
    color: var(--rdl-secondary);
    font-size: 18px;
    line-height: 1.35;
}

.rdl-options-heading p {
    margin: 0;
    color: var(--rdl-muted);
    font-size: 14px;
    line-height: 1.6;
}

.rdl-options-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

/* Option Cards */
.rdl-option-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 96px;
    padding: 15px;
    border: 1px solid var(--rdl-border);
    border-radius: 13px;
    background: var(--rdl-white);
    cursor: pointer;
    transition:
        border-color var(--rdl-transition),
        background var(--rdl-transition),
        box-shadow var(--rdl-transition),
        transform var(--rdl-transition);
}

.rdl-option-card:hover {
    border-color: #93c5fd;
    background: #fcfeff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.07);
    transform: translateY(-1px);
}

.rdl-option-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.rdl-custom-checkbox {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border: 2px solid var(--rdl-border-dark);
    border-radius: 7px;
    background: var(--rdl-white);
    transition:
        border-color var(--rdl-transition),
        background var(--rdl-transition),
        box-shadow var(--rdl-transition);
}

.rdl-custom-checkbox::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transform: rotate(45deg) scale(0.6);
    transition:
        opacity var(--rdl-transition),
        transform var(--rdl-transition);
}

.rdl-option-card input:checked + .rdl-custom-checkbox {
    border-color: var(--rdl-primary);
    background: var(--rdl-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.rdl-option-card input:checked + .rdl-custom-checkbox::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.rdl-option-card input:focus-visible + .rdl-custom-checkbox {
    outline: 3px solid rgba(37, 99, 235, 0.20);
    outline-offset: 2px;
}

.rdl-option-content {
    display: block;
    min-width: 0;
}

.rdl-option-content strong {
    display: block;
    margin-bottom: 4px;
    color: var(--rdl-secondary);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.rdl-option-content small {
    display: block;
    color: var(--rdl-muted);
    font-size: 12.5px;
    line-height: 1.55;
}

/* Main Action */
.rdl-main-action {
    display: flex;
    justify-content: center;
    padding: 25px 26px 8px;
}

.rdl-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 270px;
    min-height: 52px;
    padding: 13px 22px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--rdl-primary) 0%, var(--rdl-primary-dark) 100%);
    color: var(--rdl-white);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.24);
    transition:
        transform var(--rdl-transition),
        box-shadow var(--rdl-transition),
        filter var(--rdl-transition);
}

.rdl-remove-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.30);
    filter: brightness(1.03);
}

.rdl-remove-btn:active {
    transform: translateY(0);
}

.rdl-remove-btn:focus-visible {
    outline: 4px solid rgba(37, 99, 235, 0.20);
    outline-offset: 3px;
}

.rdl-button-icon {
    display: inline-flex;
    width: 21px;
    height: 21px;
}

/* Status Message */
.rdl-status-message {
    display: none;
    margin: 14px 26px 0;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
}

.rdl-status-message.is-visible {
    display: block;
}

.rdl-status-message.is-success {
    border-color: #bbf7d0;
    background: var(--rdl-success-soft);
    color: #166534;
}

.rdl-status-message.is-error {
    border-color: #fecaca;
    background: var(--rdl-danger-soft);
    color: #991b1b;
}

.rdl-status-message.is-info {
    border-color: #bfdbfe;
    background: var(--rdl-primary-soft);
    color: #1e40af;
}

/* Results Summary */
.rdl-results-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 26px 0;
}

.rdl-summary-item {
    padding: 17px 15px;
    border: 1px solid var(--rdl-border);
    border-radius: 13px;
    background: var(--rdl-white);
    text-align: center;
    box-shadow: var(--rdl-shadow-sm);
}

.rdl-summary-label {
    display: block;
    margin-bottom: 5px;
    color: var(--rdl-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.rdl-summary-item strong {
    display: block;
    color: var(--rdl-secondary);
    font-size: 24px;
    font-weight: 850;
    line-height: 1.2;
}

.rdl-summary-item:nth-child(3) strong {
    color: var(--rdl-danger);
}

.rdl-summary-item:nth-child(4) strong {
    color: var(--rdl-success);
}

/* Privacy Notice */
.rdl-privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 22px 0 0;
    padding: 18px 20px;
    border: 1px solid #bbf7d0;
    border-radius: var(--rdl-radius-md);
    background: var(--rdl-success-soft);
}

.rdl-privacy-icon {
    display: inline-flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 9px;
    border-radius: 12px;
    background: #dcfce7;
    color: var(--rdl-success);
}

.rdl-privacy-notice strong {
    display: block;
    margin-bottom: 3px;
    color: #166534;
    font-size: 15px;
}

.rdl-privacy-notice p {
    margin: 0;
    color: #3f6212;
    font-size: 14px;
    line-height: 1.65;
}

/* Tablet */
@media (max-width: 800px) {
    .rdl-options-panel,
    .rdl-status-message,
    .rdl-results-summary {
        margin-right: 20px;
        margin-left: 20px;
    }

    .rdl-options-grid {
        grid-template-columns: 1fr;
    }

    .rdl-results-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 600px) {
    .rdl-options-panel {
        margin-top: 14px;
        padding: 17px;
    }

    .rdl-option-card {
        min-height: auto;
        padding: 13px;
    }

    .rdl-main-action {
        padding-right: 20px;
        padding-left: 20px;
    }

    .rdl-remove-btn {
        width: 100%;
        min-width: 0;
    }

    .rdl-results-summary {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .rdl-summary-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 14px;
        text-align: left;
    }

    .rdl-summary-label {
        margin-bottom: 0;
    }

    .rdl-summary-item strong {
        font-size: 21px;
    }

    .rdl-privacy-notice {
        padding: 16px;
    }
}
/* =========================================================
   REMOVE DUPLICATE LINES TOOL
   CSS PART 3
   Content, Steps, Features, FAQ
========================================================= */

/* ---------- Content Section ---------- */

.rdl-content-section{
    margin-top:60px;
}

.rdl-content-section h2{
    margin:0 0 18px;
    color:var(--rdl-secondary);
    font-size:34px;
    line-height:1.25;
    letter-spacing:-0.02em;
}

.rdl-content-section h3{
    margin:0 0 12px;
    color:var(--rdl-secondary);
    font-size:22px;
    line-height:1.35;
}

.rdl-content-section p{
    margin:0 0 22px;
    color:var(--rdl-text);
    font-size:17px;
    line-height:1.9;
}

.rdl-content-section ul{
    margin:0 0 26px 22px;
    padding:0;
}

.rdl-content-section li{
    margin-bottom:12px;
    color:var(--rdl-text);
    line-height:1.8;
}

/* ---------- Steps ---------- */

.rdl-steps-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
    margin:40px 0 60px;
}

.rdl-step-card{
    position:relative;
    padding:28px;
    background:#fff;
    border:1px solid var(--rdl-border);
    border-radius:18px;
    box-shadow:var(--rdl-shadow-sm);
    transition:.25s ease;
}

.rdl-step-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--rdl-shadow-md);
}

.rdl-step-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    margin-bottom:18px;
    border-radius:50%;
    background:var(--rdl-primary);
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.rdl-step-card h3{
    margin-bottom:10px;
}

.rdl-step-card p{
    margin:0;
}

/* ---------- Features ---------- */

.rdl-features-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
    margin:40px 0 60px;
}

.rdl-feature-card{
    padding:24px;
    border:1px solid var(--rdl-border);
    border-radius:18px;
    background:#fff;
    transition:.25s ease;
}

.rdl-feature-card:hover{
    border-color:#93c5fd;
    transform:translateY(-3px);
    box-shadow:var(--rdl-shadow-sm);
}

.rdl-feature-card h3{
    margin-bottom:10px;
    font-size:20px;
}

.rdl-feature-card p{
    margin:0;
    font-size:15px;
}

/* ---------- Use Cases ---------- */

.rdl-use-list{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px 30px;
    margin:35px 0 60px;
    list-style:none;
}

.rdl-use-list li{
    position:relative;
    margin:0;
    padding-left:30px;
}

.rdl-use-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:1px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#dcfce7;
    color:#15803d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:700;
}

/* ---------- FAQ ---------- */

.rdl-faq-list{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:35px;
}

.rdl-faq-item{
    overflow:hidden;
    border:1px solid var(--rdl-border);
    border-radius:16px;
    background:#fff;
    transition:.25s ease;
}

.rdl-faq-item:hover{
    border-color:#bfdbfe;
}

.rdl-faq-item summary{
    position:relative;
    padding:22px 60px 22px 24px;
    list-style:none;
    cursor:pointer;
    color:var(--rdl-secondary);
    font-size:17px;
    font-weight:700;
    user-select:none;
}

.rdl-faq-item summary::-webkit-details-marker{
    display:none;
}

.rdl-faq-item summary::after{
    content:"+";
    position:absolute;
    right:22px;
    top:50%;
    transform:translateY(-50%);
    color:var(--rdl-primary);
    font-size:28px;
    font-weight:700;
    transition:.25s ease;
}

.rdl-faq-item[open] summary::after{
    transform:translateY(-50%) rotate(45deg);
}

.rdl-faq-answer{
    padding:0 24px 24px;
}

.rdl-faq-answer p{
    margin:0;
    font-size:16px;
    line-height:1.9;
}

/* ---------- Links ---------- */

.rdl-content-section a{
    color:var(--rdl-primary);
    font-weight:600;
    text-decoration:none;
}

.rdl-content-section a:hover{
    text-decoration:underline;
}

/* ---------- Responsive ---------- */

@media(max-width:991px){

.rdl-steps-grid{
grid-template-columns:1fr;
}

.rdl-features-grid{
grid-template-columns:repeat(2,minmax(0,1fr));
}

}

@media(max-width:767px){

.rdl-content-section{
margin-top:45px;
}

.rdl-content-section h2{
font-size:28px;
}

.rdl-content-section h3{
font-size:20px;
}

.rdl-content-section p{
font-size:16px;
}

.rdl-features-grid{
grid-template-columns:1fr;
}

.rdl-use-list{
grid-template-columns:1fr;
}

.rdl-step-card,
.rdl-feature-card{
padding:22px;
}

.rdl-faq-item summary{
padding:18px 50px 18px 18px;
font-size:16px;
}

.rdl-faq-answer{
padding:0 18px 18px;
}

}
/* Drag and Drop File State */

.rdl-textarea.rdl-drag-active {
    border-color: var(--rdl-primary);
    background: var(--rdl-primary-soft);
    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.13),
        inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}
/* Remove Duplicate Lines — Drag and Drop State */

.rdl-textarea.rdl-drag-active,
#rdlInputText.rdl-drag-active {
    border-color: var(--rdl-primary, #2563eb);
    background: var(--rdl-primary-soft, #eff6ff);
    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.13),
        inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}