.main-container {
		 height:90vh !important;
	     width: 93vw;
	     margin: auto !important;
	 }

.full-width-btn {
		width: 100%;
		border: none;
		border-radius: var(--Radius-Radius-s, 8px);
		background: var(--brand-primary);
		padding: 10px 20px;
		color: #FFF;
		height: 40px !important;
		 cursor: pointer;
	 }
.capitalize-first-char {
    text-transform: capitalize;
}

.skip-link {
	position: absolute;
    top: -40px;
    left: 0;
    background: #fff;
    color: #000;
    padding: 1px 8px;
    z-index: 1000;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid black;
}

.skip-link:focus {
	top: 10px;
}

.mandatory {
    font-weight: bolder !important;
}

.no-background-btn {
    border: none !important;
    background: none !important;
}

@media print {
    @page {
        size: landscape;
    }
    .filter-container {
        display: none !important;
    }
    .modern-header{
        display: none !important;
    }
    .table-form {
        width: 100vw !important;
    }
    .data-table {
        width: 100vw !important;
    }
    h1 {
        font-size: 11pt;
        margin: 0;
        padding: 0;
    }

    .footer {
        display: none !important;
    }

}

.content-title::first-letter {
    text-transform: uppercase;
}


/* Cache Refresh Message Box */
.cache-refresh-message-box {
    margin-bottom: 6rem;
    padding: 16px;
    border: 1px solid #FF0000;
    border-radius: 4px;
    width: 375px;
    animation: slideDown 0.4s ease-out;
}

.cache-refresh-message-content {
    color: #FF0000;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    word-wrap: break-word;
}

.cache-refresh-message-content::before {
    content: '';
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}