/* ===========================================
   FRESH COMPONENT STYLES - Structural CSS Only
   
   This file contains THEME-AGNOSTIC structural styles
   extracted from PDSBaseStyle.css that components depend on.
   
   Colors and theming are handled in FreshStyle.css.
   
   Created: 2024
   Related: CSS-Architecture-Modernization-Plan.md
   =========================================== */

/* ===========================================
   UTILITY CLASSES
   =========================================== */

/* Required field styling */
.requiredBackground {
    background-color: #fffef0 !important;
}

.required .rz-form-field-label:after {
    content: "*";
    color: red;
    margin-left: 2px;
}

.requiredText {
    display: inline-block;
    color: var(--rz-form-error-color);
    font-size: var(--rz-form-error-font-size);
    padding: var(--rz-validator-text-padding);
}

/* Error text mimic */
.errorTextMimic {
    display: inline-block;
    color: #f44336;
    font-size: 0.75rem;
    padding: 0;
}

/* Spacing utilities */
.rowSpace {
    padding-top: 10px;
}

.rowSpaceDouble {
    padding-top: 20px;
}

/* Clickable Labels */
.clickable-label {
    cursor: pointer;
    transition: text-decoration 0.2s;
    text-decoration: underline;
}

.clickable-label:hover {
    text-decoration: underline;
    color: var(--rz-primary);
}

/* Dividers */
.dividerOutsideOfSteps {
    margin-left: 40px;
    margin-right: 40px;
}

/* Pointer cursor */
.pointer {
    cursor: pointer;
}

/* ===========================================
   DATA GRIDS & TABLES
   =========================================== */

/* Data table alternating rows */
.ui-datatable-odd > td {
    background-color: #dcdcdc;
}

.rz-datatable-data td .rz-cell-data, .rz-grid-table td .rz-cell-data {
    width: auto !important;
}

.rz-grid-table td {
    width: auto !important;
}

/* Grid header height */
.rz-datatable-thead, .rz-grid-table, .rz-column-title {
    height: 35px !important;
}

.rz-datatable-thead th .rz-column-title, .rz-grid-table thead th .rz-column-title {
    font-weight: 600;
    padding-right: 10px;
}

.rz-custom-header {
    flex: 1;
}

/* Mobile responsive grid headers */
@media screen and (max-width: 412px) {
    .rz-datatable-thead, .rz-grid-table, .rz-column-title {
        height: auto !important;
    }

    .rz-datatable-thead th .rz-column-title, .rz-grid-table thead th .rz-column-title {
        font-weight: 600;
        padding-right: 10px;
    }
}

/* Column title wrapping */
.rz-column-title-content {
    white-space: normal !important;
    word-wrap: break-word !important;
}

.rz-sortable-column {
    white-space: normal !important;
    word-wrap: break-word !important;
}

/* Grid alignment */
.rz-grid-table thead th.rz-text-align-right .rz-column-title {
    justify-content: left !important;
}

.rz-grid-table-fixed {
    table-layout: auto !important;
}

.rz-datatable-thead th, .rz-grid-table thead th {
    text-align: left !important;
}

.rz-datatable-thead th.rz-text-align-center .rz-column-title, .rz-grid-table thead th.rz-text-align-center .rz-column-title {
    justify-content: left;
    padding-left: 10px;
}

.rz-datatable-thead th.rz-text-align-right.rz-sortable-column .rz-column-title, .rz-grid-table thead th.rz-text-align-right.rz-sortable-column .rz-column-title {
    padding-right: 0;
    padding-left: 0;
}

/* Groups */
.rz-group-header {
    border-bottom: 1px solid var(--rz-base-300);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--rz-grid-group-header-gap);
    padding: var(--rz-grid-group-header-padding);
    background-color: #f5f5f5;
    border-bottom: var(--rz-grid-bottom-cell-border);
}

/* Grid header button */
.gridHeaderButton {
    border-radius: 10px !important;
    background-color: white !important;
    color: #10793e !important;
    padding: 0.5rem .5rem !important;
}

/* Table utilities */
.contractNumCol {
    min-width: 165px;
}

.table-fs {
    font-size: .65rem;
}

.tablesubset1 {
    background-color: #e5e5e5;
    padding: .1em !important;
}

.tablesubset2 {
    background-color: #f0f0f0;
}

/* ===========================================
   HIERARCHICAL CARD GRID COMPONENT
   =========================================== */

.pds-hierarchical-card-grid {
    width: 100%;
}

.hierarchical-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.parent-card-wrapper {
    width: 100%;
}

.parent-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    background: white;
}

.parent-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    border-color: #c0c0c0;
}

.parent-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f5f5f5;
}

.parent-actions {
    flex-shrink: 0;
    margin-left: 1rem;
}

.default-parent-header {
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px dashed #dee2e6;
}

.expand-control {
    margin-bottom: 0.5rem;
}

.expand-toggle-btn {
    width: 100%;
    justify-content: center;
    font-weight: 500;
}

.children-section {
    border-top: 2px solid #f0f0f0;
    padding-top: 1rem;
    background-color: #fafafa;
    border-radius: 0 0 8px 8px;
    margin: 0 -1rem -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
}

.children-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.child-card-wrapper {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.child-card-wrapper:hover {
    transform: translateX(4px);
}

.child-card {
    background-color: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease, border-left-color 0.2s ease;
}

.child-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-left-color: #0056b3;
}

.child-content {
    margin-bottom: 0.5rem;
}

.child-actions {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
}

.default-child-content {
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px dashed #dee2e6;
}

.children-collapsed {
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    text-align: center;
    border: 1px dashed #dee2e6;
}

.no-children {
    padding: 0.5rem;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 6px;
}

/* Contract and Claim Card Styling */
.contract-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 1rem;
}

.contract-info {
    flex: 1;
}

.contract-status {
    flex-shrink: 0;
    align-self: flex-start;
}

.contract-details {
    margin-top: 0.75rem;
}

.detail-item {
    margin-bottom: 0.5rem;
}

.detail-label {
    font-weight: 600 !important;
    color: #495057 !important;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 2px;
}

.detail-value {
    font-size: 0.9rem;
    color: #6c757d;
}

.contract-actions {
    display: flex;
    gap: 0.5rem;
}

/* Claim Card Layout */
.claim-card-content {
    width: 100%;
}

.claim-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.claim-title-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.claim-number {
    font-size: 1.1rem;
    font-weight: 600;
}

.claim-actions-top {
    flex-shrink: 0;
    margin-left: 1rem;
}

.unavailable-text {
    font-size: 0.8rem;
    font-style: italic;
}

.claim-details {
    margin-top: 0.5rem;
}

.detail-item-small {
    margin-bottom: 0.5rem;
}

.field-label {
    font-weight: 600 !important;
    color: #495057 !important;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 2px;
}

.field-value {
    font-size: 0.85rem;
    color: #6c757d;
}

.claim-total {
    font-weight: 600 !important;
    color: #28a745 !important;
    font-size: 0.9rem;
}

/* Responsive Design for Hierarchical Cards */
@media (min-width: 768px) {
    .children-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .hierarchical-cards-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .children-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1rem;
    }
}

@media (min-width: 1400px) {
    .hierarchical-cards-container {
        grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
        gap: 2rem;
    }
}

/* Mobile Optimizations for Hierarchical Cards */
@media (max-width: 767px) {
    .parent-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .parent-actions {
        margin-left: 0;
        width: 100%;
    }

    .child-card-wrapper:hover {
        transform: none;
    }

    .expand-toggle-btn {
        font-size: 0.875rem;
        padding: 0.5rem;
    }

    .children-section {
        margin: 0 -0.5rem -0.5rem;
        padding: 0.75rem 0.5rem;
    }

    .contract-header-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .contract-status {
        align-self: flex-start;
    }

    .claim-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .claim-actions-top {
        margin-left: 0;
        align-self: flex-start;
    }
}

/* ===========================================
   DISPLAY MODE TOGGLE COMPONENT
   =========================================== */

.pds-display-mode-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pds-display-mode-toggle .toggle-label {
    font-weight: 500;
    color: #495057;
    font-size: 0.875rem;
}

.pds-display-mode-toggle .display-mode-button-group {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pds-display-mode-toggle .display-mode-button-group .rz-button {
    border-radius: 0;
    border-right: 1px solid #dee2e6;
}

.pds-display-mode-toggle .display-mode-button-group .rz-button:last-child {
    border-right: none;
}

.pds-display-mode-toggle .display-mode-button-group .rz-button:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pds-display-mode-toggle .display-mode-button-group .rz-button:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pds-display-mode-toggle .results-count {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

/* Responsive behavior for Display Mode Toggle */
@media (max-width: 767px) {
    .pds-display-mode-toggle {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .pds-display-mode-toggle .toggle-label {
        display: none;
    }
    
    .pds-display-mode-toggle .results-count {
        font-size: 0.8rem;
        text-align: center;
        width: 100%;
        order: -1;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .pds-display-mode-toggle {
        gap: 0.75rem;
    }
}

/* Integration with view-toggle class */
.view-toggle .pds-display-mode-toggle {
    justify-content: flex-end;
}

.results-summary .pds-display-mode-toggle .results-count {
    display: none;
}

/* ===========================================
   BOTTOM BUTTON BAR SYSTEM
   =========================================== */

/* Main content layout with fixed bottom */
.main-content-with-fixed-bottom {
    min-height: calc(100vh - 160px);
    padding-bottom: 0px;
    transition: padding-bottom 0.3s ease;
    box-sizing: border-box;
    overflow: auto;
}

/* Bottom button bar container */
.bottom-button-bar-container {
    width: 100%;
    padding: 0.5rem 0;
}

/* Bottom bar row */
.bottom-bar-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.bottom-bar-row:last-child {
    margin-bottom: 0;
}

/* Fixed bottom button bar - ALWAYS full width by default */
.bottom-button-bar-fixed {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: white !important;
    border-top: 1px solid #e0e0e0 !important;
    z-index: 1001 !important;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1) !important;
    padding: 1rem 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    height: auto !important;
    min-height: auto !important;
    max-height: 120px !important;
}

/* Transparent background modifier */
.bottom-button-bar-fixed.bottom-button-bar-transparent {
    background-color: transparent !important;
    border-top: none !important;
    box-shadow: none !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

/* White background modifier */
.bottom-button-bar-fixed.bottom-button-bar-white {
    background-color: white !important;
    border-top: 1px solid #e0e0e0 !important;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1) !important;
}

/* Ensure RadzenPanel doesn't create scrollbar */
.main-content-with-fixed-bottom .rz-panel {
    height: auto !important;
    overflow: visible !important;
    box-shadow: none !important;
}

/* Mobile responsive adjustments for bottom bar */
@media screen and (max-width: 600px) {
    .main-content-with-fixed-bottom {
        min-height: calc(100vh - 160px);
        padding-bottom: 0px;
    }

    .bottom-button-bar-fixed {
        max-height: 140px !important;
        padding: 0.75rem 1rem !important;
    }

    .bottom-bar-row {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .bottom-bar-row .rz-label {
        font-size: 14px;
        line-height: 1.4;
        word-wrap: break-word;
    }

    .bottom-bar-row .rz-checkbox {
        flex-shrink: 0;
    }

    /* Touch targets for mobile */
    .bottom-button-bar-fixed .rz-button {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
        font-size: 14px;
        padding: 10px 16px;
    }

    .bottom-button-bar-fixed .rz-checkbox {
        min-height: 44px;
        min-width: 44px;
    }

    .bottom-button-bar-fixed .mud-button {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
}

/* Tablet landscape adjustments */
@media screen and (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
    .main-content-with-fixed-bottom {
        padding-bottom: 80px;
    }

    .bottom-button-bar-fixed {
        max-height: 100px !important;
        padding: 0.5rem !important;
    }

    .bottom-bar-row {
        gap: 0.25rem;
        margin-bottom: 0.25rem;
    }
}

/* Android keyboard handling */
@media (max-height: 500px) {
    .main-content-with-fixed-bottom {
        padding-bottom: 90px;
    }

    .bottom-button-bar-fixed {
        max-height: 80px !important;
        padding: 0.5rem 1rem !important;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .bottom-button-bar-fixed.bottom-button-bar-white {
        border-top: 0.5px solid rgba(0,0,0,0.1) !important;
    }
}

/* iOS-specific fixes */
@supports (-webkit-touch-callout: none) {
    .bottom-button-bar-fixed {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
        -webkit-overflow-scrolling: touch;
    }
    
    .main-content-with-fixed-bottom {
        min-height: 100dvh;
        min-height: 100vh;
    }
}

/* Respect RadzenLayout sidebar boundaries - ONLY for layouts WITH a sidebar */
/* FreshLayout has .fresh-layout class, so target that specifically */
.fresh-layout .bottom-button-bar-fixed {
    left: var(--rz-sidebar-width, 0px) !important;
    transition: left 0.3s ease !important;
}

.fresh-layout .rz-sidebar-collapsed ~ .rz-body .bottom-button-bar-fixed,
.fresh-layout .rz-sidebar[style*="display: none"] ~ .rz-body .bottom-button-bar-fixed {
    left: 0 !important;
}

@media screen and (min-width: 768px) {
    .fresh-layout .bottom-button-bar-fixed {
        left: 320px !important;
    }

    .fresh-layout .rz-sidebar[style*="display: none"] ~ .rz-body .bottom-button-bar-fixed,
    .fresh-layout .rz-sidebar-collapsed ~ .rz-body .bottom-button-bar-fixed {
        left: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .fresh-layout .bottom-button-bar-fixed {
        left: 0 !important;
    }
}

/* ===========================================
   MODERN LOGIN CONTROL STYLING
   =========================================== */

.modern-login-wrapper {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input focus - light green with subtle glow */
.modern-login-input:focus,
.modern-login-input input:focus {
    border-color: #58C085 !important;
    box-shadow: 0 0 0 3px rgba(88, 192, 133, 0.2) !important;
    transition: all 0.3s ease;
    outline: none;
}

/* Button hover - subtle lift effect */
.modern-login-wrapper .rz-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 121, 62, 0.4) !important;
    transition: all 0.3s ease;
}

/* Primary button specific styling */
.modern-login-wrapper .rz-button[style*="background-color: #10793e"]:hover:not(:disabled) {
    background-color: #0d5f30 !important;
}

/* Card subtle hover effect */
.modern-login-wrapper .rz-card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.modern-login-wrapper .rz-card:hover {
    box-shadow: 0 24px 70px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* Error alert styling */
.modern-login-wrapper .rz-alert {
    border-left: 4px solid #ef4444;
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remember me checkbox alignment */
.modern-login-wrapper .rz-checkbox-box {
    border-color: #58C085;
}

.modern-login-wrapper .rz-checkbox-box.rz-state-active {
    background-color: #10793e;
    border-color: #10793e;
}

/* Forgot password link hover */
.modern-login-wrapper .rz-link:hover {
    color: #0d5f30 !important;
    text-decoration: underline;
}

/* Help/Support buttons - outlined style */
.modern-login-wrapper .rz-button[style*="border-color: #10793e"]:hover:not(:disabled) {
    background-color: #f8fdf9 !important;
    border-color: #0d5f30 !important;
    color: #0d5f30 !important;
}

/* Loading state */
.modern-login-wrapper .rz-button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Mobile responsive adjustments for login */
@media (max-width: 768px) {
    .modern-login-wrapper .rz-card {
        padding: 1.5rem !important;
        margin: 1rem;
        max-width: 95% !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    }
    
    .modern-login-wrapper .rz-button {
        font-size: 14px !important;
        height: 44px !important;
        min-height: 44px !important;
    }
    
    .modern-login-wrapper .rz-textbox,
    .modern-login-wrapper .rz-password {
        font-size: 16px !important;
    }
    
    .modern-login-wrapper .rz-stack[style*="Horizontal"] {
        flex-direction: column !important;
    }
    
    .modern-login-wrapper .rz-stack[style*="Horizontal"] .rz-button {
        width: 100% !important;
    }
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .modern-login-wrapper .rz-card {
        max-width: 400px !important;
        padding: 2rem !important;
    }
}

/* Accessibility - High contrast mode */
@media (prefers-contrast: high) {
    .modern-login-wrapper .rz-card {
        border: 2px solid #333;
    }
    
    .modern-login-input:focus,
    .modern-login-input input:focus {
        border-width: 3px !important;
    }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .modern-login-wrapper {
        animation: none;
    }
    
    .modern-login-wrapper .rz-card,
    .modern-login-wrapper .rz-button {
        transition: none;
    }
}

/* Print styles */
@media print {
    .modern-login-wrapper {
        display: none;
    }
}

/* ===========================================
   FORM COMPONENTS
   =========================================== */

/* Photo Label */
.photoLabel {
    right: auto;
    top: var(--rz-form-field-label-floating-top);
    padding-top: 0;
    padding-bottom: 0;
    transform: translate(0, 0);
    color: var(--rz-input-placeholder-color);
    background-color: var(--rz-form-field-label-floating-background-color);
    font-size: 0.75rem;
    line-height: 1rem;
    max-width: calc(100% - 1.5rem);
}

/* Autofill styling */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px white;
}

/* Checkbox styling */
.rz-chkbox-box {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: normal;
    border: var(--rz-input-border);
    border-width: var(--rz-checkbox-border-width);
    border-radius: var(--rz-checkbox-border-radius);
    box-shadow: var(--rz-input-shadow);
    background-color: var(--rz-input-background-color);
    transition: var(--rz-transition-all);
}

/* Checkbox icon content change */
.rz-chkbox-box .rzi-times:before {
    content: "check";
}

/* ===========================================
   MISCELLANEOUS COMPONENTS
   =========================================== */

/* Scrollbar styling */
::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
    height: 7px;
    -webkit-overflow-scrolling: auto;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

/* Card Grid Header */
.cardGridHeader {
    margin: 0;
    color: var(--rz-text-color);
    font-family: var(--rz-text-font-family);
    font-size: .85rem;
    line-height: var(--rz-body-line-height);
}

/* File upload button */
.btn-file {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 5%;
    min-height: 5%;
    font-size: 100px;
    text-align: right;
    filter: opacity(0%);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

/* Damage area button */
.btnDamageArea {
    width: 80px !important;
    height: 80px !important;
    background-color: var(--rz-primary) !important;
    border: none !important;
    border-radius: 20px !important;
}

.iconDamageArea {
    font-size: 60px !important;
    margin-left: -5px !important;
    color: white !important;
}

/* Rotation utility */
.rotate90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

/* Info button */
.infoButton {
    background-color: transparent !important;
}

.iconInfo {
    font-size: 20px !important;
    margin-left: -5px !important;
    color: var(--rz-info) !important;
    cursor: pointer;
}

/* User access select bar */
.userAccessSelectBar {
    width: 25rem;
}

@media screen and (max-width:412px) {
    .userAccessSelectBar {
        width: 15rem;
    }
}
