:root {
    --red: #d71920;
    --dark-red: #aa1016;
    --ink: #161616;
    --muted: #686868;
    --line: #dedede;
    --paper: #ffffff;
    --soft: #f5f5f3;
    --yellow: #ffd54a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--soft);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.topbar {
    display: flex;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
    padding: 8px 20px;
    color: var(--muted);
    font-size: 13px;
}

.brand-row,
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 20px;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    color: var(--ink);
    font-size: clamp(32px, 6vw, 58px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: .9;
    text-transform: uppercase;
}

.brand strong {
    color: var(--red);
    margin-left: 2px;
}

.account-nav,
.admin-header nav {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: 14px;
}

.account-nav a,
.admin-header a,
.read-link,
.actions a {
    color: var(--red);
    font-weight: 700;
}

.category-nav {
    display: flex;
    gap: 4px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px 12px;
    overflow-x: auto;
}

.category-nav a {
    border: 1px solid var(--line);
    padding: 9px 13px;
    background: var(--paper);
    color: #333;
    font-weight: 700;
    white-space: nowrap;
}

.category-nav a.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 20px 48px;
}

.ticker {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    min-height: 46px;
    margin-bottom: 18px;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}

.ticker strong {
    align-self: stretch;
    display: grid;
    place-items: center;
    padding: 0 16px;
    background: var(--red);
    text-transform: uppercase;
    font-size: 14px;
}

.ticker-track {
    display: flex;
    gap: 34px;
    min-width: 0;
    white-space: nowrap;
    animation: ticker 26s linear infinite;
}

.ticker-track span::before {
    content: "+++ ";
    color: var(--yellow);
    font-weight: 900;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-55%); }
}

.lead-grid,
.content-layout,
.dashboard {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 22px;
}

.lead-story {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .82)),
        url("https://images.unsplash.com/photo-1593098659667-f4c7fefb64d3?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.story-meta,
.card-kicker,
.story-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.story-meta span,
.card-kicker span,
.card-kicker strong {
    padding: 5px 8px;
    background: var(--red);
    color: #fff;
    text-transform: uppercase;
}

.card-kicker strong {
    background: var(--ink);
}

.lead-story h1 {
    max-width: 780px;
    margin: 14px 0 10px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: .98;
}

.lead-story p {
    max-width: 700px;
    margin: 0 0 18px;
    font-size: 19px;
    line-height: 1.45;
}

.read-link {
    width: fit-content;
    background: #fff;
    padding: 11px 14px;
}

.live-panel,
.sidebar,
.editor-panel,
.admin-list,
.user-panel,
.auth-card {
    background: var(--paper);
    border: 1px solid var(--line);
}

.live-panel,
.sidebar {
    padding: 18px;
}

.live-panel h2,
.sidebar h2,
.editor-panel h1,
.admin-list h2,
.user-panel h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.live-panel a,
.sidebar a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 13px 0;
    border-top: 1px solid var(--line);
    font-weight: 700;
    line-height: 1.35;
}

.live-panel span,
.sidebar strong {
    color: var(--red);
}

.content-layout {
    margin-top: 22px;
}

.news-list {
    display: grid;
    gap: 14px;
}

.news-card {
    background: var(--paper);
    border-top: 5px solid var(--red);
    padding: 20px;
}

.news-card h2 {
    margin: 12px 0 8px;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.04;
}

.news-card p {
    color: #333;
    font-size: 17px;
    line-height: 1.5;
}

.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background:
        linear-gradient(120deg, rgba(215, 25, 32, .9), rgba(22, 22, 22, .82)),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.auth-shell {
    width: min(460px, calc(100% - 32px));
    padding: 0;
}

.auth-shell .brand {
    color: #fff;
    margin-bottom: 16px;
}

.auth-card,
.editor-panel,
.admin-list,
.user-panel {
    padding: 20px;
}

.auth-card {
    display: grid;
    gap: 14px;
}

label {
    display: grid;
    gap: 7px;
    font-size: 14px;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #cfcfcf;
    border-radius: 0;
    padding: 11px 12px;
    font: inherit;
    background: #fff;
}

button {
    border: 0;
    background: var(--red);
    color: #fff;
    padding: 11px 14px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

button:hover,
.category-nav a.active:hover {
    background: var(--dark-red);
}

.alert {
    margin: 0;
    padding: 10px;
    background: #fff2f2;
    border-left: 4px solid var(--red);
}

.demo-logins {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.dashboard-page {
    background: #efefed;
}

.admin-header {
    max-width: none;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.admin-header .brand {
    font-size: 38px;
}

.dashboard {
    align-items: start;
}

.editor-form,
.user-form {
    display: grid;
    gap: 14px;
}

.form-grid,
.user-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checks {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.checks label {
    display: flex;
    align-items: center;
}

.checks input {
    width: auto;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

th,
td {
    padding: 12px 10px;
    border-top: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.actions form {
    margin: 0;
}

.actions button {
    padding: 0;
    background: transparent;
    color: var(--red);
}

.user-panel {
    grid-column: 1 / -1;
}

.user-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.user-list span {
    padding: 8px 10px;
    background: var(--soft);
    border: 1px solid var(--line);
}

@media (max-width: 820px) {
    .brand-row,
    .admin-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .lead-grid,
    .content-layout,
    .dashboard,
    .form-grid,
    .user-form {
        grid-template-columns: 1fr;
    }

    .ticker {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ticker strong {
        min-height: 38px;
    }

    .lead-story {
        min-height: 430px;
        padding: 22px;
    }
}

.case-page {
    background: #f1f1ef;
}

.case-page .topbar,
.case-page .brand-row,
.ticker-page,
.footer-inner,
.footer-bottom {
    width: min(100%, 1180px);
}

.case-header {
    background: #fff;
    border-bottom: 4px solid var(--red);
}

.ticker-page {
    max-width: 980px;
}

.case-hero {
    padding: 30px 0 22px;
    border-bottom: 1px solid var(--line);
}

.case-label {
    display: inline-flex;
    padding: 7px 10px;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.case-hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(36px, 7vw, 72px);
    line-height: .95;
    letter-spacing: 0;
}

.case-hero p {
    max-width: 860px;
    margin: 0;
    color: #333;
    font-size: 19px;
    line-height: 1.45;
}

.case-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.case-stats span,
.ticker-meta span,
.ticker-meta strong {
    padding: 6px 9px;
    background: #fff;
    border: 1px solid var(--line);
    color: #333;
    font-size: 13px;
    font-weight: 800;
}

.case-context {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
    gap: 18px;
    margin: 18px 0;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 6px solid var(--red);
}

.case-context h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.case-context p {
    margin: 0;
    color: #333;
    font-size: 17px;
    line-height: 1.55;
}

.context-list {
    display: grid;
    gap: 8px;
    align-content: center;
}

.context-list span {
    padding: 10px 12px;
    background: var(--soft);
    border: 1px solid var(--line);
    color: #333;
    font-weight: 800;
    line-height: 1.35;
}

.pinned-updates {
    margin: 18px 0;
    background: #151515;
    color: #fff;
    border-left: 6px solid var(--red);
}

.pinned-updates h2 {
    margin: 0;
    padding: 14px 16px 0;
    font-size: 18px;
}

.pinned-updates a {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.pinned-updates strong {
    color: var(--yellow);
}

.live-timeline {
    position: relative;
    padding: 8px 0 50px;
}

.timeline-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: end;
    margin: 18px 0;
}

.timeline-head h2 {
    margin: 0;
    font-size: 26px;
}

.timeline-head span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.timeline-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    position: relative;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 78px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--line);
}

.timeline-item time {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: end;
    align-content: start;
    padding-top: 18px;
    color: var(--red);
    font-weight: 900;
}

.timeline-item time::after {
    content: "";
    position: absolute;
    right: -28px;
    top: 22px;
    width: 13px;
    height: 13px;
    background: var(--red);
    border: 4px solid #f1f1ef;
}

.timeline-item time span {
    font-size: 22px;
}

.timeline-item time small {
    color: var(--muted);
    font-size: 12px;
}

.timeline-card,
.timeline-empty {
    margin-bottom: 16px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
}

.timeline-card {
    overflow-wrap: anywhere;
}

.timeline-item.is-pinned .timeline-card {
    border-top: 5px solid var(--red);
}

.ticker-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
}

.ticker-meta strong {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.timeline-card h2 {
    margin: 0 0 8px;
    font-size: clamp(22px, 4vw, 36px);
    line-height: 1.05;
}

.timeline-card p {
    margin: 0;
    color: #222;
    font-size: 18px;
    line-height: 1.5;
}

.timeline-card footer {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 640px) {
    .case-context {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .timeline-item::before,
    .timeline-item time::after {
        display: none;
    }

    .timeline-item time {
        justify-items: start;
        padding-top: 8px;
    }

    .pinned-updates a {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

.dashboard-page {
    background:
        linear-gradient(180deg, #151515 0, #151515 280px, #efefed 280px, #efefed 100%);
}

.dashboard-page .admin-header {
    max-width: none;
    background: #101010;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
}

.dashboard-page .admin-header .brand {
    color: #fff;
    font-size: 38px;
}

.dashboard-page .admin-header nav {
    color: rgba(255, 255, 255, .72);
}

.dashboard-page .admin-header a {
    color: #fff;
}

.dashboard-shell {
    max-width: 1220px;
    margin: 0 auto;
    padding: 26px 20px 54px;
}

.dashboard-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, .9fr);
    gap: 20px;
    align-items: end;
    margin-bottom: 22px;
    color: #fff;
}

.dashboard-hero h1 {
    margin: 12px 0 8px;
    font-size: clamp(34px, 6vw, 62px);
    line-height: .95;
}

.dashboard-hero p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 18px;
    line-height: 1.45;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.dashboard-stats span {
    display: grid;
    gap: 4px;
    min-height: 86px;
    align-content: center;
    padding: 14px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.dashboard-stats strong {
    color: #fff;
    font-size: 30px;
    line-height: 1;
}

.flash {
    margin: 0 0 14px;
    padding: 13px 15px;
    border: 1px solid transparent;
    background: #fff;
    font-weight: 800;
}

.flash-success {
    border-color: #b9dbc2;
    color: #135c29;
    background: #eefaf1;
}

.flash-error {
    border-color: #f0b7b7;
    color: #9a1212;
    background: #fff1f1;
}

.dashboard-shell .dashboard {
    max-width: none;
    padding: 0;
    align-items: start;
}

.dashboard-shell .editor-panel,
.dashboard-shell .admin-list,
.dashboard-shell .user-panel {
    padding: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.dashboard-shell input:focus,
.dashboard-shell textarea:focus,
.dashboard-shell select:focus {
    outline: 3px solid rgba(215, 25, 32, .16);
    border-color: var(--red);
}

.editor-form > button,
.user-form button {
    min-height: 46px;
}

.dashboard-shell .user-form {
    grid-template-columns: 1.1fr 1.2fr 1fr .8fr auto;
    align-items: center;
}

.dashboard-shell thead {
    background: #f4f4f2;
}

.dashboard-shell .actions a,
.dashboard-shell .actions button {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 800;
}

.dashboard-shell .actions .action-edit {
    color: var(--ink);
}

.dashboard-shell .actions .action-delete {
    color: var(--red);
}

.dashboard-shell .user-panel {
    margin-top: 22px;
    grid-column: auto;
}

.panel-title-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.panel-title-row h2 {
    margin: 0;
}

.panel-title-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.dashboard-shell .user-list span {
    display: grid;
    gap: 3px;
    padding: 10px 12px;
    background: var(--soft);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.dashboard-shell .user-list strong {
    color: var(--ink);
    font-size: 14px;
}

@media (max-width: 900px) {
    .dashboard-hero,
    .dashboard-shell .dashboard,
    .dashboard-shell .user-form {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

.case-footer {
    margin-top: 151px;
    background: #111;
    color: #fff;
    border-top: 6px solid var(--red);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, .8fr) minmax(190px, .6fr);
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 20px 28px;
}

.case-footer .brand {
    color: #fff;
    font-size: clamp(30px, 5vw, 48px);
}

.case-footer p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.55;
}

.case-footer h2 {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    text-transform: uppercase;
}

.footer-live-dot {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
}

.footer-live-dot span {
    width: 10px;
    height: 10px;
    background: var(--red);
    box-shadow: 0 0 0 7px rgba(215, 25, 32, .16);
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-links a {
    width: fit-content;
    color: #fff;
    border-bottom: 2px solid var(--red);
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 20px 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 760px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (min-width: 1000px) {
    .case-page .brand-row {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .case-hero h1 {
        max-width: 900px;
    }

    .timeline-card {
        padding: 22px;
    }
}

@media (max-width: 760px) {
    main,
    .ticker-page,
    .dashboard-shell {
        padding-left: 14px;
        padding-right: 14px;
    }

    .case-page .topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
        padding: 8px 14px;
    }

    .case-page .brand-row {
        padding: 14px;
    }

    .case-page .brand {
        font-size: 34px;
    }

    .case-page .account-nav {
        width: 100%;
        gap: 8px;
    }

    .case-page .account-nav a {
        display: inline-flex;
        min-height: 40px;
        align-items: center;
        padding: 0 12px;
        background: var(--red);
        color: #fff;
        font-size: 13px;
    }

    .case-hero {
        padding: 22px 0 18px;
    }

    .case-label {
        font-size: 12px;
    }

    .case-hero h1 {
        margin-top: 12px;
        font-size: 40px;
        line-height: 1;
    }

    .case-hero p,
    .case-context p,
    .timeline-card p {
        font-size: 16px;
        line-height: 1.55;
    }

    .case-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .case-stats span {
        width: 100%;
    }

    .case-context {
        margin: 14px 0;
        padding: 14px;
    }

    .case-context h2,
    .timeline-head h2 {
        font-size: 22px;
    }

    .timeline-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .timeline-card,
    .timeline-empty {
        padding: 15px;
    }

    .timeline-card h2 {
        font-size: 24px;
        line-height: 1.1;
    }

    .ticker-meta span,
    .ticker-meta strong {
        font-size: 12px;
    }

    .case-footer {
        margin-top: 18px;
    }

    .footer-inner {
        gap: 22px;
        padding: 28px 14px 24px;
    }

    .case-footer .brand {
        font-size: 34px;
    }

    .footer-links a {
        display: flex;
        min-height: 42px;
        width: 100%;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, .22);
    }

    .footer-bottom {
        padding: 14px;
    }
}

@media (max-width: 420px) {
    .case-hero h1 {
        font-size: 34px;
    }

    .case-page .brand {
        font-size: 30px;
    }

    .context-list span,
    .pinned-updates a,
    .timeline-card,
    .timeline-empty {
        padding-left: 12px;
        padding-right: 12px;
    }
}
.editor-layout{
    display:grid;
    grid-template-columns: 1fr 1.2fr;
    gap:25px;
    margin-top:20px;
}

/* LEFT */
.editor-panel{
    background:#fff;
    padding:20px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.editor-head h1{
    margin:0;
    font-size:22px;
}

.editor-head p{
    margin-top:5px;
    color:#777;
    font-size:13px;
}

.field{
    margin-top:15px;
}

.field label{
    display:block;
    font-size:12px;
    font-weight:700;
    margin-bottom:6px;
    color:#444;
}

input, textarea{
    width:100%;
    padding:10px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:14px;
}

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.toggle-row{
    display:flex;
    justify-content:space-between;
    margin:15px 0;
}

.toggle{
    font-size:13px;
    background:#f6f6f6;
    padding:8px 10px;
    border-radius:10px;
}

.btn-primary{
    width:100%;
    padding:12px;
    border:none;
    border-radius:10px;
    background:#ff3b30;
    color:#fff;
    font-weight:700;
    cursor:pointer;
}

/* RIGHT LIST */
.list-panel{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.list-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.news-card{
    background:#fff;
    padding:15px;
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    border-left:4px solid transparent;
}

.news-card.breaking{
    border-left:4px solid #ff3b30;
}

.news-card h3{
    margin:8px 0;
    font-size:16px;
}

.news-card p{
    font-size:13px;
    color:#555;
}

.tag{
    font-size:11px;
    background:#eee;
    padding:3px 8px;
    border-radius:6px;
}

.tag.red{
    background:#ff3b30;
    color:#fff;
}

.news-meta{
    font-size:12px;
    color:#777;
    margin-top:8px;
    display:flex;
    gap:10px;
}

.news-actions{
    display:flex;
    justify-content:space-between;
    margin-top:10px;
}

.btn-edit{
    font-size:12px;
    color:#007bff;
}

.btn-delete{
    background:none;
    border:none;
    color:#ff3b30;
    cursor:pointer;
}