*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #f0f0f0;
}

.icon {
    padding: 0px;
    margin: 0;
    border: 0;
    font-size: 20px;
}

#app {
    background-color: #fff;
    font-family: 'Arial', sans-serif;
    max-width: 1400px;
    height: calc(100%- 40px);
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
}

.page-header {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

#environment-variables,
#environment-secrets {
    margin-bottom: 10px;
    padding: 20px;
}

.config-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.base-config-form .section-header,
.account-config-form .section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.account-item {
    background: #fafbfc;
    border: 1px solid #e4e7ed;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.account-config-form .action {
    display: flex;
    justify-content: center;
    gap: 20px;
}