/* FileLocation: assets/v1/common/styles/global.css */

/* General properties  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
    outline: none;
}

html {
    font-family: Arial, sans-serif;
    font-size: 62.5%;
}

/* Coloring Style: Trust and Professionalism */
:root {
    --clrPrimary: #003366; /* Dark Blue */
    --clrSecondary: #87ceeb; /* Sky Blue */
    --clrBackground: #d3d3d3; /* Light Gray */
    --clrText: #fff; /* White */
}

[data-theme="dark"] {
    --clrPrimary: #e6e6e6; /* Light Gray for readability */
    --clrSecondary: #4e97d1; /* Muted Sky Blue */
    --clrBackground: #101522; /* Very Dark Navy */
    --clrText: #1a1a2e; /* Dark Navy */
}

.swal2-title,
.swal2-html-container {
    font-size: 1.4rem !important;
}

.swal2-confirm,
.swal2-deny,
.swal2-cancel {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
