@font-face {
	font-family: 'Arya-Regular';
	src: url('fonts/Arya-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap; /* Optional for better performance */
}

@font-face {
	font-family: 'Kurale-Regular';
	src: url('fonts/Kurale-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap; /* Optional for better performance */
}


html,
body {
	font-family: 'Kurale-Regular';
	height: 100%;
	background: #94d1a7;
	font-size: 14px;
}

.arya {
	font-family: 'Arya-Regular' !important;
}

/* Custom responsive spacing */
        @media (max-width: 767.98px) {
            .footer-text {
                margin-bottom: 0.5rem;
            }
            .footer-text:last-child {
                margin-bottom: 0;
            }
        }




.fill-primary { fill: #007bff; }
    .fill-secondary { fill: #6c757d; }
    .fill-success { fill: #28a745; }
    .fill-danger { fill: #dc3545; }
    .fill-warning { fill: #ffc107; }
    .fill-info { fill: #17a2b8; }
    .fill-dark { fill: #343a40; }
    .fill-light { fill: #f8f9fa; }

.wrap > .container {
	padding: 20px 15px 20px;
}



.footer {
            background-color: #f8f9fa;
            border-top: 1px solid #dee2e6;
            padding: 1rem 0;
            margin-top: auto;
        }

.jumbotron {
	text-align: center;
	background-color: transparent;
}

.jumbotron .btn {
	font-size: 21px;
	padding: 14px 24px;
}

.not-set {
	color: #c55;
	font-style: italic;
}



.hint-block {
	display: block;
	margin-top: 5px;
	color: #999;
}

.error-summary {
	color: #a94442;
	background: #fdf7f7;
	border-left: 3px solid #eed3d7;
	padding: 10px 20px;
	margin: 0 0 15px 0;
}

.permissions {
	font-size: 16px;
	cursor: pointer;
}

.d-center{
	text-align:center;
}


.flex-grow09{
	flex-grow:0.9;
}


/* Container for horizontal scrolling */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Table styling */
.scrollable-table {
    width: max-content; /* Force table to expand beyond container */
    min-width: 100%;
    border-collapse: collapse;
}



/* Mobile-specific adjustments */
@media (max-width: 767px) {
	/* Freeze the first column */
	.scrollable-table th.freeze-column,
	.scrollable-table td.freeze-column {
		position: sticky;
        left: 0;
        background: #4f605e;
        z-index: 1;
        color: white;
	}
    .freeze-column {
        min-width: 80px; /* Adjust width for mobile */
    }
}