/* 引入主题变量 */
@import url('./themes/theme-variables.css');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Amazon Ember", "Helvetica Neue", Roboto, Arial, sans-serif;
    line-height: 1.4;
    color: var(--text-primary);
    background-color: var(--bg-main);
    font-size: 14px;
    height: 100vh;
    overflow: hidden;
}

#app {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

/* Buttons - 莫兰迪色系样式 (由buttons.css统一管理) */
/* 这里的样式已移至buttons.css文件中统一管理 */

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }

.hidden { display: none; }
.visible { display: block; }

/* Import Assessment Types Styles */
@import url('./assessment-types.css');

/* Import Cat Component Styles */
@import url('./cat.css');

/* permissions.css moved to dynamic loading */