/* =========================================
   GLOBALNE I UKŁAD BAZOWY
========================================= */

*, *::before, *::after {
	box-sizing: border-box;
}

body {
	font-family: sans-serif;
	background: #f0f2f5;
	margin: 0;
	padding: 0;
	overflow: hidden;
	height: 100vh;
	width: 100vw;
}

body.app-body {
	display: flex;
	flex-direction: column;
}

body.app-body > div:not(#menu-screen):not(.k-modal-bg):not(.modal-overlay):not(.notification) {
	position: relative;
	flex-grow: 1;
	overflow-y: auto;
	padding-top: 0;
}

#menu-screen {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	position: relative;
	background: #f0f2f5;
	z-index: 1000;
	padding: 20px;
	flex-shrink: 0;
}

hr {
	margin: 20px 0;
	border: 0;
	border-top: 1px solid #ddd;
}

.system-footer {
	flex-shrink: 0;
	width: 100%;
	background-color: #f9f9f9;
	border-top: 1px solid #eeeeee;
	padding: 15px 0;
	clear: both;
}

.system-footer-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.system-footer-text {
	font-family: 'Segoe UI', Tahoma, sans-serif;
	font-size: 11px;
	color: #888888;
	margin: 0;
	letter-spacing: 0.5px;
}

.system-footer-author {
	font-weight: 600;
	color: #555555;
}

/* =========================================
   KOMPONENTY (BOXY, TABELE, DROPDOWN)
========================================= */

.menu-box {
	background: #fff;
	padding: 50px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	text-align: center;
	width: 800px;
	max-width: 95%;
}

.menu-box h2 {
	margin: 0 0 30px 0;
	font-size: 24px;
	color: #333;
}

.menu-box-wide {
	background: #fff;
	padding: 15px;
	border-radius: 8px;
	width: 100%;
	margin: 0 auto;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.app-standard-box {
	background: #ffffff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	width: 100%;
	margin: 0 auto;
	border: 1px solid #f0f0f0;
}

.subtle-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
}

.subtle-table th {
	text-align: left;
	padding: 12px;
	border-bottom: 2px solid #eee;
	color: #888;
	font-size: 11px;
	text-transform: uppercase;
}

.subtle-table td {
	padding: 12px;
	border-bottom: 1px solid #f9f9f9;
	vertical-align: middle;
	text-align: left;
}

.tpl-name-cell {
	font-weight: bold;
	color: #333;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #ffffff;
	min-width: 220px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.15);
	z-index: 1000;
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #eee;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown-item {
	color: #333;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}

.dropdown-item:hover {
	background: #f1f1f1;
	color: #17a2b8;
}

/* =========================================
   FORMULARZE I INPUTY
========================================= */

label {
	display: block;
	margin-top: 10px;
	font-weight: bold;
	font-size: 13px;
	text-align: left;
}

input, select {
	width: 100%;
	padding: 8px;
	margin-top: 3px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

input:disabled, select:disabled {
	background: #f9f9f9;
	color: #ccc;
}

.k-form-fields {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.k-form-fields label {
	font-size: 13px;
	color: #555;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 3px;
}

.k-form-fields input, .k-form-fields select {
	padding: 10px;
}

.input-xlarge {
	width: 100%;
	max-width: 400px;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 15px;
}

.input-medium {
	width: 100%;
	max-width: 200px;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 15px;
}

.select-medium {
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 15px;
	width: 100%;
	max-width: 200px;
}

.text-url {
	color: #666;
	font-size: 12px;
}

.form-inline-add {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	align-items: center;
}

.input-large {
	width: 100%;
	max-width: 300px;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 15px;
}

input[type="checkbox"] {
    display: inline-block!important;
    width: auto !important;
    margin-right: 8px;
}

/* =========================================
   PRZYCISKI (HIERARCHIA I KOLORY)
========================================= */

button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.btn-subtle-action {
	display: inline-block;
	width: auto;
	border: none;
	padding: 6px 12px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: bold;
	cursor: pointer;
	color: white;
	margin-left: 4px;
}

.btn-info {
	background: #17a2b8;
	color: white;
}

.btn-success {
	background: #28a745;
	color: white;
}

.btn-yellow {
	background: #ffc107;
	color: #000;
}

.btn-danger {
	background: #dc3545;
	color: white;
}

.btn-danger-action {
	background: #ef4444;
	color: white;
	border: none;
	transition: background 0.2s;
}
.btn-danger-action:hover {
	background: #dc2626;
}

.btn-back-small {
	display: inline-block;
	background: #6c757d;
	color: #ffffff;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s ease;
}

.btn-back-small:hover {
	background: #5a6268;
}

.big-btn {
	display: block;
	width: 100%;
	padding: 10px 12px;
	margin: 15px 0;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	border: none;
	border-radius: 6px;
	color: white;
}

.admin-btn-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 25px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 8px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

.stack-purple-btn, .stack-yellow-btn, .stack-red-btn {
	display: block;
	width: 100%;
	padding: 20px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	text-align: center;
	transition: transform 0.1s, opacity 0.2s;
}

.stack-purple-btn {
	background: #6f42c1;
	color: #fff;
}

.stack-yellow-btn {
	background: #ffc107;
	color: #000;
}

.stack-red-btn {
	background: #dc3545;
	color: #fff;
	text-decoration: none;
}

.stack-purple-btn:hover, .stack-yellow-btn:hover, .stack-red-btn:hover {
	opacity: 0.9;
}

.stack-purple-btn:active, .stack-yellow-btn:active, .stack-red-btn:active {
	transform: scale(0.98);
}

.k-submit-btn {
	width: 100%;
	padding: 15px;
	font-size: 18px;
	margin-top: 20px;
}

.k-tab-btn.active-tab {
	background: #17a2b8;
	color: white;
}

.k-sub-btn.active-sub-tab {
	background: #6f42c1;
	color: white;
}

.btn-large {
	padding: 11px 25px;
	font-size: 15px;
	height: 100%;
	margin-top: 3px;
}

/* =========================================
   EDYTOR GRAFIK I SZABLONÓW
========================================= */

#editor-screen {
	padding: 20px;
	gap: 20px;
	align-items: flex-start;
	height: 100vh;
	overflow: hidden;
}

#settings-panel {
	width: 350px;
	background: #fff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	flex-shrink: 0;
}

.canvas-workspace {
	flex-grow: 1;
	height: 100%;
	overflow: auto;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

#canvas-container {
	position: relative;
	background: #fff;
	border: 2px dashed #ccc;
	overflow: hidden;
	border-radius: 8px;
	display: none;
}

#base-image {
	display: block;
	max-width: 1000px;
	max-height: 800px;
}

.text-element {
	position: absolute;
	cursor: move;
	border: 1px dashed transparent;
	user-select: none;
	display: flex;
	overflow: hidden;
}

.text-element.selected::after {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: transparent;
	border: 2px dashed #007bff;
	pointer-events: none;
	z-index: 10;
}

.resizer {
	width: 12px;
	height: 12px;
	background: #007bff;
	position: absolute;
	right: -6px;
	bottom: -6px;
	cursor: se-resize;
	border-radius: 50%;
	z-index: 20;
}

#editor-workspace.gen-mode #canvas-container, #editor-workspace.gen-mode .text-element, #editor-workspace.gen-mode .text-element.selected {
	border: none!important;
	outline: none!important;
}

#editor-workspace.gen-mode .resizer {
	display: none!important;
}

.group-header {
	margin-top: 15px;
	margin-bottom: 5px;
	font-size: 14px;
	color: #17a2b8;
	border-bottom: 1px solid #eee;
	padding-bottom: 3px;
}

.row-2 {
	display: flex;
	gap: 10px;
}

.row-2 > div {
	flex: 1;
}

#layers-list {
	padding: 5px;
}

.layer-item {
	padding: 8px;
	margin-bottom: 2px;
	background: #fff;
	border-radius: 3px;
	cursor: pointer;
	font-size: 12px;
	font-weight: bold;
	border: 1px solid #eee;
	text-align: left;
}

.layer-item.active {
	background: #17a2b8;
	color: white;
	border-color: #17a2b8;
}

.text-content {
	display: flex;
	width: 100%;
	height: 100%;
	line-height: normal;
}

.gen-input {
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.editor-visible {
	display: flex;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.editor-visible-calc {
	display: flex;
	width: 100%;
	height: calc(100vh - 80px);
	overflow: hidden;
}

.flex-gap-5 {
	display: flex;
	gap: 5px;
}

.btn-blue {
	background-color: #007bff;
	color: white;
}

#layers-list {
	padding: 5px;
	max-height: 100px;
	overflow-y: auto;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-bottom: 15px;
	background: #f9f9f9;
}

.flex-row-align {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.flex-row-align h3 {
	margin: 0;
	line-height: 1;
	white-space: nowrap;
}

.flex-row-align input {
	margin: 0;
	width: auto;
}

.flex-between-center {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.flex-between-center h3 {
	margin: 0;
	line-height: 1;
}

.text-content-fit {
	display: block;
	width: 100%;
	height: auto;
	white-space: pre-wrap;
	word-break: break-word;
	overflow-wrap: break-word;
}

.img-content {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #f8f9fa;
}

.object-cover {
	object-fit: cover;
}

.bg-placeholder {
	background-color: #f8f9fa;
}

/* =========================================
   EKRAN LOGOWANIA I UŻYTKOWNIKA
========================================= */

.login-body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background: #f4f7f9;
	font-family: sans-serif;
}

.login-wrapper {
	flex: 1 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.login-box {
	width: 100%;
	max-width: 380px;
	background: #ffffff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.login-header {
	margin: 0 0 10px 0;
	color: #333;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

.login-desc {
	margin: 0 0 30px 0;
	color: #777;
	font-size: 14px;
	text-align: center;
}

.login-form {
	display: flex;
	flex-direction: column;
}

.login-label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #555;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.login-input {
	width: 100%;
	padding: 12px 15px;
	margin-bottom: 20px;
	border: 2px solid #eaeff2;
	border-radius: 8px;
	font-size: 15px;
	transition: border-color 0.3s;
	outline: none;
}

.login-input:focus {
	border-color: #6f42c1;
}

.login-btn {
	width: 100%;
	padding: 14px;
	background: #6f42c1;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s, transform 0.1s;
}

.login-btn:hover {
	background: #5a32a3;
}

.login-btn:active {
	transform: scale(0.98);
}

.login-alert-block {
	color: #dc3545;
	font-size: 16px;
	margin: 20px 0;
	font-weight: bold;
	text-align: center;
}

.login-alert-error {
	color: #dc3545;
	font-size: 14px;
	margin: 0 0 15px 0;
	font-weight: bold;
	text-align: center;
}

.admin-panel-container {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.admin-panel-title {
	margin: 0 0 20px 0;
	font-size: 28px;
	color: #333;
	text-align: left;
}

.admin-buttons-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
}

/* =========================================
   MODALE I WSKAŹNIKI ŁADOWANIA (SPINNER)
========================================= */

.modal-overlay {
	position: fixed;
	top: 0; left: 0; width: 100vw; height: 100vh;
	background: rgba(0,0,0,0.6);
	z-index: 999999;
}

.modal-box {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	background: #ffffff;
	border-radius: 8px;
	padding: 25px;
	min-width: 320px;
	max-width: 450px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	text-align: center;
}

.modal-box h4 {
	margin: 0 0 15px 0;
	color: #333;
	font-size: 22px;
}

.modal-box p {
	margin: 0 0 25px 0;
	color: #555;
	font-size: 16px;
}

.modal-actions {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.spinner-container {
	text-align: center;
	padding: 20px;
}

.spinner-circle {
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #17a2b8;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

.modal-overlay-top {
	z-index: 2147483647!important;
}

.modal-custom-content {
	margin-bottom: 20px;
	text-align: left;
	width: 100%;
}

.modal-input-field {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 15px;
}

/* =========================================
   KOMUNIKATY I EKRANY POWITALNE
========================================= */

.welcome-screen {
	padding: 40px;
	text-align: center;
	color: #666;
}

.welcome-screen h2 {
	margin-top: 0;
	color: #333;
}

/* =========================================
   STRUKTURA WIDOKÓW I TABEL
========================================= */

.view-container {
	padding: 0 20px 20px 20px;
	width: 100%;
	height: 100vh;
	overflow-y: auto;
}

.box-header {
	margin: 0 0 20px 0;
	font-size: 24px;
	color: #333;
}

.table-wrapper {
	border: 1px solid #eee;
	border-radius: 4px;
	overflow: hidden;
}

.table-wrapper .subtle-table {
	margin-top: 0;
}

.table-wrapper th {
	background: #f9f9f9;
}

/* =========================================
   KLASY POMOCNICZE (UTILITY)
========================================= */

.text-right {
	text-align: right;
}

.text-center {
	text-align: center!important;
}

.text-danger-bold {
	font-weight: bold;
	color: #dc3545;
}

.actions-cell {
	text-align: right;
	white-space: nowrap;
}

.empty-row-message {
	padding: 15px;
	color: #666;
}

.mb-20 {
	margin-bottom: 20px;
}

.w-100 {
	width: 100%;
}

.no-underline {
	text-decoration: none;
}

.flex-gap-10 {
	display: flex;
	gap: 10px;
}

.w-50 {
	width: 50%;
}

.mb-5 {
	margin-bottom: 5px;
}

.mt-5 {
	margin-top: 5px;
}

.mb-15 {
	margin-bottom: 15px;
}

.flex-end-gap {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin: 15px 0;
}

.section-subtitle {
	margin: 0 0 10px 0;
	color: #333;
	font-size: 16px;
}

.flex-gap-10 {
	display: flex;
	gap: 10px;
}

.w-50 {
	width: 50%;
}

.mb-5 {
	margin-bottom: 5px;
}

.mt-5 {
	margin-top: 5px;
}

.mb-15 {
	margin-bottom: 15px;
}

.d-inline-block {
	display: inline-block;
}

.m-0 {
	margin: 0;
}

.ml-5 {
	margin-left: 5px;
}

.w-80 {
	width: 80%;
}

.w-20 {
	width: 20%;
}

.w-150px {
	width: 150px;
}

.w-200px {
	width: 200px;
}

.w-250px {
	width: 250px;
}

.w-auto {
	width: auto;
}

.w-100px {
	width: 100px;
}

.w-120px {
	width: 120px;
}

.w-130px {
	width: 130px;
}

.w-140px {
	width: 140px;
}

.w-300px {
	width: 300px;
}

.fw-bold {
	font-weight: bold;
}

.mt-15 {
	margin-top: 15px;
}

.fw-600-dark {
	font-weight: 600;
	color: #444;
}

.v-middle {
	vertical-align: middle;
}

.mb-20 {
	margin-bottom: 20px;
}

.mt-20 {
	margin-top: 20px;
}

.d-none {
	display: none;
}

.u-none {
	user-select: none;
}

.d-flex {
	display: flex;
}

.d-block {
	display: block;
}

.bg-transparent {
	background-color: transparent!important;
}

.d-table-row {
	display: table-row!important;
}

/* =========================================
   ELEMENTY WIDOKU SCRAPERA / WYNIKÓW
========================================= */

/*.btn-scrape-action {
	background: #6f42c1;
	color: white;
	width: 250px;
	margin-top: 20px;
	padding: 12px;
	font-size: 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
	transition: background 0.2s ease;
}*/

.btn-scrape-action:hover {
	background: #5a32a3;
}

.results-container {
	margin-top: 25px;
}

.results-title {
	margin: 0;
	font-size: 20px;
	color: #333;
}

.badge-gray {
	background: #eee;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	color: #444;
}

/* =========================================
   DODATKOWE KLASY PRZYCISKÓW I NARZĘDZIOWE
========================================= */

.btn-purple {
	background: #6f42c1;
	color: white;
}

.btn-green {
	background: #014c0d;
	color: white;
}

.stack-info-btn {
	display: block;
	width: 100%;
	padding: 20px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	text-align: center;
	transition: transform 0.1s, opacity 0.2s;
	background: #17a2b8;
	color: #fff;
}

.stack-info-btn:hover {
	opacity: 0.9;
}

.stack-info-btn:active {
	transform: scale(0.98);
}

/* =========================================
   KLASY DLA KADROWANIA I DODATKOWE UTILITY
========================================= */

.flex-end-gap {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin: 15px 0;
}

.section-subtitle {
	margin: 0 0 10px 0;
	color: #333;
	font-size: 16px;
}

/* =========================================
   MODUŁ KADROWANIA (SEKCJE K-)
========================================= */

.k-section {
	width: 100%;
}

.k-drop-zone {
	width: 100%;
	height: 300px;
	border: 2px dashed #007bff;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: bold;
	color: #007bff;
	background: #f8f9fa;
	transition: all 0.3s ease;
	cursor: pointer;
}

.k-drop-zone:hover, .k-drop-zone--over {
	background: #ccefff;
	border-color: #0056b3;
}

.k-form-fields {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.k-form-fields label {
	font-size: 13px;
	color: #555;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 3px;
}

.k-form-fields input, .k-form-fields select {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	width: 100%;
}

.k-submit-btn {
	width: 100%;
	padding: 15px;
	font-size: 18px;
	margin-top: 20px;
}

.k-sub-btn {
	padding: 8px 16px;
}

.k-sub-btn.active-sub-tab {
	background: #6f42c1;
	color: white;
}

.k-log-output {
	margin-top: 15px;
	padding: 10px;
	background: #f1f1f1;
	border-left: 4px solid #17a2b8;
	font-family: monospace;
	font-size: 13px;
	min-height: 40px;
}

.k-log-output img {
	border: 1px solid #ddd;
}

/* =========================================
   MODUŁ LOGÓW SYSTEMOWYCH
========================================= */

.header-with-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 20px 0;
}

.filter-bar {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	background: #f9f9f9;
	padding: 15px;
	border-radius: 4px;
	border: 1px solid #eee;
}

.filter-label {
	font-size: 12px;
	font-weight: bold;
	color: #666;
}

.filter-input {
	padding: 8px;
	border-radius: 4px;
	border: 1px solid #ccc;
	margin-top: 5px;
	width: 100%;
}

.filter-search-wrapper {
	flex-grow: 1;
	max-width: 400px;
}

.table-fixed {
	table-layout: fixed;
}

.log-date-cell {
	white-space: nowrap;
	font-size: 12px;
	color: #555;
}

.log-action-cell {
	font-size: 13px;
	color: #0056b3;
}

.log-ip-cell {
	font-size: 12px;
	color: #888;
}

.badge-small {
	background: #eee;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: bold;
	color: #444;
	display: inline-block;
}

/* =========================================
   USTAWIENIA I POLA TEKSTOWE
========================================= */

.text-muted-small {
	color: #888;
	font-weight: normal;
}

.setting-textarea {
	min-height: 80px;
	resize: vertical;
}

.input-xxlarge {
	width: 100%;
	max-width: 450px;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 15px;
}

.img-avatar-small {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 4px;
}

.modal-label {
	display: block;
	margin-bottom: 5px;
	font-size: 13px;
	font-weight: bold;
	color: #555;
}

.row-new-highlight {
	background-color: #e8f5e9!important;
	transition: background-color 0.4s ease;
}

.row-edit-highlight {
	background-color: #fff3cd!important;
	transition: background-color 0.4s ease;
}

.subtle-table tbody tr {
	transition: background-color 0.4s ease;
}