/* CSP Inline Style Replacements - Utility Classes */
/* This file contains CSS classes to replace inline styles for Content Security Policy compliance */

/* Width utilities */
.w-55-percent {
    width: 55%;
}

.w-80px {
    width: 80px;
}

.w-100-percent {
    width: 100%;
}

.w-20vw {
    width: 20vw;
}

/* Display utilities */
.display-none {
    display: none;
}

/* Font weight utilities */
.font-weight-400 {
    font-weight: 400;
}

/* Table utilities */
.table-full-width {
    width: 100%;
}

.table-collapsed {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.table-fixed-layout {
    table-layout: fixed;
    word-break: break-word;
}

/* Container utilities */
.container-55-percent {
    width: 55%;
}

/* Pre-line white-space */
.white-space-pre-line {
    white-space: pre-line;
}

/* Overflow utilities */
.overflow-auto {
    overflow: auto;
}

/* Height utilities */
.h-1500px {
    height: 1500px;
}