/*
 * 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.
 *


 */

.expenses-status-paid,
.incomes-status-received {
    background-color: greenyellow;
    border-radius: 7.6px;
    padding: 6px;
    text-align: center;
}

.expenses-status-pending,
.incomes-status-pending {
    background-color: crimson;
    border-radius: 7.6px;
    color: white;
    padding: 6px;
    text-align: center;
}

.resource-tag {
    background-color: #f3f4f6;
    color: #1f2937;
    border-radius: 9999px;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.resource-tag:hover {
    background-color: #e5e7eb;
}

input,
select,
textarea {
    border: solid 1px #ccc;
}

.primary-color {
    color: #70D39D;
}

.bg-primary-color {
    background-color: #4ADE80;
}

.text-primary-color {
    color: #70D39D;
}

/* Hide default <details> marker on summary */
summary.list-none {
    display: block;
}

summary.list-none::-webkit-details-marker {
    display: none;
}
