@font-face {
    font-family: "IRANSansX";
    src: url("font.ttf");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    font-family: "IRANSansX", sans-serif !important;
}


body {
    margin: 0;
    background: #fff;
    color: #111;
}

.app {
    width: 100%;
    min-height: 100vh;
}

.screen {
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 110px 34px 40px;
}

.screen-title {
    margin: 0 0 42px;
    text-align: center;
    font-size: 28px;
    font-weight: 800;
}

.menu-screen {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 22px;
}

.menu-button,
.primary-button,
.danger-button {
    width: 100%;
    min-height: 64px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-button {
    border: 2px solid #111;
    color: #111;
    background: #fff;
}

.primary-button {
    border: 0;
    color: #fff;
    background: #111;
    margin-top: 70px;
    cursor: pointer;
}

.danger-button {
    border: 2px solid red; 
    color: red;
    background: #fff;
    margin-top: 22px;
    
}

.danger-button.small {
    margin-top: 0;
    min-height: 64px;
    width: calc(50% - 8px);
}

.form-box {
    width: 100%;
}

.field-label {
    display: block;
    margin-bottom: 16px;
    padding-right: 5px;
    font-size: 18px;
    font-weight: 500;
}

.field-input,
.field-row {
    width: 100%;
    min-height: 64px;
    border: 2px solid #111;
    border-radius: 12px;
    background: #fff;
    font-size: 18px;
    font-weight: 500;
    color: #111;
}

.field-input {
    padding: 0 26px;
    margin-bottom: 42px;
    text-align: right;
}

select.field-input {
    appearance: auto;
}

.field-row {
    margin-bottom: 18px;
    padding: 0 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.field-row span {
    font-size: 18px;
    font-weight: 600;
}

.field-row input {
    width: 120px;
    border: 0;
    outline: 0;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    background: transparent;
}

.report-screen {
    padding-top: 75px;
}

.report-title {
    margin: 0 0 55px;
    text-align: center;
    font-size: 32px;
    font-weight: 800;
}

.report-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.report-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    font-size: 20px;
}

.report-name {
    min-width: 145px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-mark {
    color: #333;
    font-size: 20px;
    line-height: 1;
}

.report-detail {
    flex: 1;
    color: #222;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    line-height: 1.8;
}

.report-detail span {
    display: block;
}

.report-nav {
    display: flex;
    gap: 16px;
    margin-top: 70px;
}

.report-title span {
    color: red;
}

.outline-button {
    border: 2px solid #111;
    color: #111;
    background: #fff;
    margin-top: 0;
    min-height: 64px;
    width: calc(50% - 8px);
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-mark {
    color: green;
}

.report-item {
    display: block;
}

.report-name {
    width: 100%;
    min-width: 0;
    margin-bottom: 8px;
}

.report-detail {
    text-align: right;
    padding-right: 38px;
}

.report-detail span {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 8px;
}

.edit-link {
    color: #4FAE32;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
}

button.danger-button {
    cursor: pointer;
}

.app-logo {
    width: 120px;
    height: auto;
    display: block;
    margin: 10px auto 15px;
    object-fit: contain;
}


.green-button {
    border: 2px solid #2a9f07;
    color: #3d9921;
    background: #fff;
    margin-top: 22px;
    min-height: 64px;
    width: 100%;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}