/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *

 */
/* Таблицы в отчётах */
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.prose th,
.prose td {
    border: 1px solid #cbd5e1;
    padding: 0.5rem 0.75rem;
    vertical-align: top;
}

.prose th {
    background: #f1f5f9;
    font-weight: 600;
}

.prose tbody tr:nth-child(even) {
    background: #f8fafc;
}

/* Блоки решений */
.prose blockquote {
    border-left-width: 4px;
    padding: 1rem;
    border-radius: 0.75rem;
}

.prose blockquote.decision-rejected {
    background: #ffe4e6;     /* rose-100 */
    border-left-color: #f43f5e; /* rose-500 */
}

.prose blockquote.decision-postponed {
    background: #fef3c7;     /* amber-100 */
    border-left-color: #f59e0b; /* amber-500 */
}
.prose ul.decision-accepted {
    background: #ecfdf5;
    border-left: 4px solid #10b981;
    padding: 1rem;
    border-radius: .75rem;
}
