.fjt-app * {
    box-sizing: border-box
}

.fjt-app {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    color: #1e293b
}

.fjt-alerts {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #ef4444
}

.fjt-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap
}

.fjt-topbar h1 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
    min-width: 200px;
    margin: 0
}

.fjt-logo {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(to bottom right, #38bdf8, #06b6d4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(6, 182, 212, .3)
}

.fjt-search {
    position: relative;
    flex: 2;
    min-width: 180px
}

.fjt-search input {
    width: 100%;
    padding: 8px 12px 8px 34px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 13px;
    color: #1e293b;
    background: #f8fafc;
    transition: all .2s
}

.fjt-search input:focus {
    outline: none;
    background: #fff;
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, .15)
}

.fjt-search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 15px
}

.fjt-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    align-items: center;
    font-size: 12px;
    color: #64748b
}

.fjt-fbtn {
    padding: 4px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    color: #64748b;
    font-size: 12px;
    cursor: pointer;
    transition: all .15s;
    line-height: 1.2;
    font-weight: 500
}

.fjt-fbtn.active {
    background: linear-gradient(to right, #38bdf8, #06b6d4);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 4px rgba(6, 182, 212, .25)
}

.fjt-fsel {
    padding: 4px 8px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    color: #1e293b;
    font-size: 12px;
    line-height: 1.2;
    outline: none
}

.fjt-fsel:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, .1)
}

.fjt-add-btn {
    padding: 8px 16px;
    background: linear-gradient(to right, #38bdf8, #06b6d4);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(6, 182, 212, .3);
    transition: all .2s
}

.fjt-add-btn:hover {
    background: linear-gradient(to right, #0ea5e9, #0891b2);
    transform: translateY(-1px)
}

.fjt-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 1.5rem
}

.fjt-stat {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .02)
}

.fjt-stat .n {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b
}

.fjt-stat .l {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
    font-weight: 500
}

.fjt-color-warning {
    color: #f59e0b !important
}

.fjt-color-danger {
    color: #ef4444 !important
}

.fjt-color-success {
    color: #10b981 !important
}

.fjt-tasks {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.fjt-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .15s, box-shadow .15s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .02)
}

.fjt-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .05)
}

.fjt-card.pr-High {
    border-left: 4px solid #ef4444
}

.fjt-card.pr-Medium {
    border-left: 4px solid #f59e0b
}

.fjt-card.pr-Low {
    border-left: 4px solid #10b981
}

.fjt-card.alert-today {
    border: 2px solid #ef4444;
    background: #fef2f2;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, .1)
}

.fjt-card-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer
}

.fjt-chk {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    flex-shrink: 0;
    margin-top: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all .2s;
    background: #f8fafc
}

.fjt-chk:hover {
    border-color: #38bdf8
}

.fjt-chk.done {
    background: linear-gradient(to bottom right, #38bdf8, #06b6d4);
    border-color: transparent;
    color: #fff
}

.fjt-info {
    flex: 1;
    min-width: 0
}

.fjt-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
    line-height: 1.4
}

.fjt-name.done {
    text-decoration: line-through;
    color: #94a3b8
}

.fjt-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center
}

.badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .02em
}

.b-date {
    background: #f1f5f9;
    color: #475569
}

.b-contact {
    background: #e0f2fe;
    color: #0369a1
}

.b-status {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0
}

.b-status.Finalizado {
    background: #ecfdf5;
    color: #047857;
    border-color: #d1fae5
}

.b-status.Pendiente {
    background: #fffbeb;
    color: #b45309;
    border-color: #fef3c7
}

.b-status.Enviado {
    background: #e0f2fe;
    color: #0369a1;
    border-color: #bae6fd
}

.b-status.En-revision {
    background: #fff1f2;
    color: #be123c;
    border-color: #ffe4e6
}

.b-status.En-progreso {
    background: #f0fdf4;
    color: #15803d;
    border-color: #dcfce7
}

.b-status.Esperando {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0
}

.b-pri-High {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fee2e2
}

.b-pri-Medium {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fef3c7
}

.b-pri-Low {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #dcfce7
}

.fjt-alert-today-tag {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    background: #fef2f2;
    color: #ef4444
}

.fjt-expand {
    margin-left: auto;
    font-size: 11px;
    color: #94a3b8;
    padding: 2px 4px;
    flex-shrink: 0
}

.fjt-body {
    border-top: 1px solid #f1f5f9;
    padding: 16px;
    display: none;
    background: #f8fafc
}

.fjt-body.open {
    display: block
}

.fjt-body h4 {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 10px
}

.fjt-note {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #334155;
    line-height: 1.5;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .02)
}

.fjt-note-content {
    flex: 1
}

.fjt-note-date,
.fjt-note-author {
    font-size: 11px;
    margin-bottom: 2px
}

.fjt-note-date {
    color: #94a3b8
}

.fjt-note-author {
    color: #0ea5e9;
    font-weight: 600
}

.fjt-del-note {
    color: #cbd5e1;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
    padding: 0 2px;
    transition: color .15s
}

.fjt-del-note:hover {
    color: #ef4444
}

.fjt-add-note {
    display: flex;
    gap: 10px;
    margin-top: 12px
}

.fjt-add-note input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 13px;
    outline: none;
    transition: all .2s
}

.fjt-add-note input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, .15)
}

.fjt-add-note button,
.fjt-linkbtn {
    padding: 8px 16px;
    background: linear-gradient(to right, #38bdf8, #06b6d4);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s
}

.fjt-add-note button:hover,
.fjt-linkbtn:hover {
    background: linear-gradient(to right, #0ea5e9, #0891b2);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(6, 182, 212, .3)
}

.fjt-linkbtn.is-disabled {
    background: #e2e8f0;
    color: #94a3b8;
    pointer-events: none;
    box-shadow: none
}

.fjt-edit-row,
.fjt-subgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0
}

.fjt-edit-row select,
.fjt-edit-row input,
.fjt-subgrid select,
.fjt-subgrid input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13px;
    background: #fff;
    color: #1e293b;
    outline: none;
    transition: all .2s
}

.fjt-edit-row select:focus,
.fjt-edit-row input:focus,
.fjt-subgrid select:focus,
.fjt-subgrid input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, .1)
}

.fjt-del-task {
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #fca5a5;
    color: #ef4444;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
    transition: all .2s
}

.fjt-del-task:hover {
    background: #fef2f2
}

.fjt-linkrow {
    display: flex;
    gap: 8px;
    align-items: center
}

.fjt-linkrow input {
    flex: 1
}

.fjt-modal-bg {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center
}

.fjt-modal-bg.open {
    display: flex;
    animation: fadeIn .2s ease-out
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fjt-modal {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    width: min(560px, 95vw);
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1)
}

.fjt-modal h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b
}

.fjt-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px
}

.fjt-row label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .04em
}

.fjt-row input,
.fjt-row select,
.fjt-row textarea {
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: #1e293b;
    outline: none;
    transition: all .2s
}

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

.fjt-row textarea {
    resize: vertical;
    min-height: 80px
}

.fjt-modal-btns {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 2rem
}

.fjt-btn-cancel {
    padding: 10px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    color: #64748b;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: all .2s
}

.fjt-btn-cancel:hover {
    background: #f8fafc;
    color: #1e293b
}

.fjt-btn-save {
    padding: 10px 20px;
    background: linear-gradient(to right, #38bdf8, #06b6d4);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    transition: all .2s;
    box-shadow: 0 2px 4px rgba(6, 182, 212, .3)
}

.fjt-btn-save:hover {
    background: linear-gradient(to right, #0ea5e9, #0891b2);
    transform: translateY(-1px)
}

.fjt-loader,
.fjt-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #94a3b8;
    font-size: 14px;
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    margin-top: 1rem
}

.fjt-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #10b981;
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 99999;
    display: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1)
}

.fjt-toast.error {
    background: #ef4444
}

@media(max-width:600px) {
    .fjt-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .fjt-add-note,
    .fjt-linkrow {
        flex-direction: column;
        align-items: stretch
    }
}


/* Versión Roja */

.fjt-app {
    max-width: 1180px;
    margin: 20px auto;
    padding: 22px;
    background: #f7f9fc;
    border-radius: 24px;
    font-family: Arial, sans-serif;
    color: #182033
}

.fjt-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    background: #fff;
    padding: 18px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06)
}

.fjt-logo {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #143d70;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700
}

.fjt-topbar h1 {
    font-size: 24px;
    margin: 0
}

.fjt-topbar p {
    margin: 4px 0 0;
    color: #64748b
}

.fjt-add-btn,
.fjt-btn-save,
.fjt-actions button,
.fjt-add-note button {
    border: 0;
    background: #143d70;
    color: #fff;
    border-radius: 12px;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: 700
}

.fjt-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 18px 0
}

.fjt-stat {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .05)
}

.fjt-stat .n {
    font-size: 28px;
    font-weight: 800;
    color: #143d70
}

.fjt-stat .warning {
    color: #d97706
}

.fjt-stat .danger {
    color: #dc2626
}

.fjt-stat .success {
    color: #059669
}

.fjt-stat .l {
    color: #64748b;
    font-size: 13px
}

.fjt-filters {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px
}

.fjt-filters input,
.fjt-filters select,
.fjt-row input,
.fjt-row select,
.fjt-row textarea,
.fjt-add-note input {
    width: 100%;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    padding: 10px;
    background: #fff;
    box-sizing: border-box
}

.fjt-alert-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 14px
}

.fjt-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .04);
    overflow: hidden
}

.fjt-card.due {
    border-color: #f59e0b
}

.fjt-card-head {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 16px;
    cursor: pointer
}

.fjt-check {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex: 0 0 auto
}

.fjt-check.done {
    background: #059669
}

.fjt-main-info {
    flex: 1
}

.fjt-name {
    font-size: 17px;
    font-weight: 800
}

.fjt-task-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-top: 3px;
    font-weight: 600
}

.fjt-name.done {
    text-decoration: line-through;
    color: #64748b
}

.fjt-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px
}

.badge {
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 999px;
    background: #eef2ff;
    color: #3730a3
}

.badge.date {
    background: #e0f2fe;
    color: #075985
}

.badge.contact,
.badge.owner {
    background: #ecfdf5;
    color: #047857
}

.badge.agency {
    background: #dbeafe;
    color: #1d4ed8
}

.badge.tour {
    background: #ede9fe;
    color: #5b21b6
}

.badge.status {
    background: #f1f5f9;
    color: #334155
}

.badge.priority {
    background: #fee2e2;
    color: #991b1b
}

.badge.category,
.badge.type {
    background: #f5f3ff;
    color: #6d28d9
}

.badge.alert {
    background: #ffedd5;
    color: #9a3412
}

.badge.notes {
    background: #fef9c3;
    color: #854d0e
}

.fjt-expand {
    color: #64748b;
    font-size: 13px
}

.fjt-body {
    display: none;
    border-top: 1px solid #edf2f7;
    padding: 16px
}

.fjt-body.open {
    display: block
}

.fjt-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 12px
}

.fjt-actions button {
    background: #2563eb
}

.fjt-actions button.danger {
    background: #dc2626
}

.fjt-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px
}

.fjt-links a {
    background: #f1f5f9;
    color: #143d70;
    padding: 7px 10px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px
}

.fjt-note {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #edf2f7;
    background: #fafafa;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 8px
}

.fjt-note-date {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 3px
}

.fjt-note button {
    border: 0;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 9px;
    cursor: pointer;
    width: 28px;
    height: 28px
}

.fjt-empty,
.fjt-loader,
.fjt-empty-note {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    color: #64748b
}

.fjt-add-note {
    display: flex;
    gap: 8px;
    margin-top: 10px
}

.fjt-modal-bg {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, .45);
    align-items: center;
    justify-content: center;
    padding: 20px
}

.fjt-modal-bg.open {
    display: flex
}

.fjt-modal {
    background: #fff;
    border-radius: 22px;
    width: min(760px, 96vw);
    max-height: 90vh;
    overflow: auto;
    padding: 20px;
    box-shadow: 0 20px 80px rgba(15, 23, 42, .3)
}

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

.fjt-modal h3 {
    margin: 0 0 15px;
    font-size: 22px
}

.fjt-x {
    border: 0;
    background: #f1f5f9;
    border-radius: 10px;
    font-size: 22px;
    width: 36px;
    height: 36px;
    cursor: pointer
}

.fjt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.fjt-row.full {
    grid-column: 1/-1
}

.fjt-row label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 5px
}

.fjt-row textarea {
    min-height: 85px
}

.fjt-modal-btns {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px
}

.fjt-btn-cancel {
    border: 0;
    background: #e2e8f0;
    color: #334155;
    border-radius: 12px;
    padding: 10px 15px;
    cursor: pointer
}

.fjt-toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 100000;
    background: #143d70;
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: .2s
}

.fjt-toast.show {
    opacity: 1;
    transform: translateY(0)
}

.fjt-toast.error {
    background: #dc2626
}

@media(max-width:800px) {
    .fjt-topbar {
        align-items: flex-start;
        flex-direction: column
    }

    .fjt-stats {
        grid-template-columns: 1fr 1fr
    }

    .fjt-filters,
    .fjt-grid {
        grid-template-columns: 1fr
    }

    .fjt-add-note {
        flex-direction: column
    }

    .fjt-row.full {
        grid-column: auto
    }
}

.fjt-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 6px 0 14px
}

.fjt-detail {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 12px;
    padding: 10px;
    min-height: 48px
}

.fjt-detail span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 4px
}

.fjt-detail strong {
    display: block;
    font-size: 13px;
    color: #0f172a;
    word-break: break-word
}

.fjt-link-btn {
    display: inline-block;
    background: #eaf2ff !important;
    color: #143d70 !important;
    border: 1px solid #cfe1ff;
    font-weight: 700;
    padding: 8px 12px !important;
    border-radius: 11px !important
}

.fjt-notes-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px
}

.fjt-notes-head h4 {
    margin: 0
}

.fjt-notes-toggle {
    border: 1px solid #dbe3ef;
    background: #fff;
    color: #143d70;
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 700
}

.fjt-notes-wrap {
    display: none;
    margin-top: 10px
}

.fjt-notes-wrap.open {
    display: block
}

@media(max-width:900px) {
    .fjt-details {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    .fjt-details {
        grid-template-columns: 1fr
    }

    .fjt-notes-head {
        align-items: flex-start;
        flex-direction: column
    }
}

.fjt-task-subtitle strong {
    color: #334155
}

.fjt-task-subtitle .fjt-muted {
    color: #94a3b8;
    font-weight: 500
}

.fjt-task-subtitle .fjt-sep {
    color: #cbd5e1;
    margin: 0 4px
}