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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    color: #514f4f;
    background-color: #f8fafc;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    position: relative;
    text-align: center;
}

.logo {
    width: 200px;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #3182ce;
    border-bottom: #3182ce 2px solid;
}
#view-container{
    display: none;
}
.download {
    display: flex;
    justify-content: flex-end;
    margin: 12px 0 0;
}

.download-btn {
    background-color: #3182ce;
    color: #fbfbfb;
    padding: 8px;
    border-radius: 3px;
    border: 1px solid #3182ce;
    display: none;
    cursor: pointer;
}
/* IdSelector */
.id-form-selector {
    /* margin: 0 auto 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    gap: 8px;
}

.profile-id-label {
    width: auto;
    margin-right: 0;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #535b6e;

}
.id-submit-button {
    padding: 7px 10px;
    border: none;
    border-radius: 3px;
    background: #3182ce;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}
#investor-profile-id-container {
    margin: 0 auto;
}
select{
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    color: #000;
}

fieldset {
    border: 1px solid #00558E;
    border-radius: 5px;
    margin: 15px 0;
    padding: 0 15px 15px;
}

legend {
    background-color: #3182ce;
    color: white;
    padding: 2px 10px;
    border-radius: 3px;
    font-weight: 700;
    font-family: 'Libre Baskerville', serif;
}

.form-group {
    display: flex;
    margin: 10px 0;
    padding-top: 5px;
}

label {
    width: 80%;
    font-weight: 600;
    color: #00558E;
    margin-right: 20px;
}

.result {
    width: 100%;
}

/* .result-only {
    width: 100%;
    color: #3182ce;
    font-weight: bold;
    text-align: right;
} */

/* Nationaloties and identity Documents */
.identity-doc-list {
    margin-left: 25px;
}

/* Personal Info */
.personal-information {
    display: none;
}

/* Amount Section */
.amount-group {
  display: flex;
  align-items: center;
  gap: 10px; 
}

.amount-group label {
  flex: 0 0 42%;
}

.amount-group p {
  flex: 1;
  margin: 0;
}

#year_one, #year_two{
    font-weight: bold;
}

@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    label {
        width: 100%;
        margin-bottom: 5px;
    }
}

@media print {
    @page {
        margin: 0;
        margin-top: 10px;
    }
    body {
        margin: 0;
        font-size: 12pt;
        background-color: white;
    }
    .page-header {
        color: #3182ce !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    legend {
        background-color: #3182ce !important;
        color: white !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    .no-print {
        display: none;
    }
}