* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    background-color: #f3f4f6;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}
.container{
    color: #000;
    max-width: 80%;
    margin: 0 auto;
    background: #fff;
    padding: 5px 20px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.logo {
  position: absolute;
  left: 20px; 
  height: 40px; 
}

.page-title {
    font-size: 20px;
    font-weight: 500;
    color: #3182ce;
    text-align: center;
    margin: 0;
}

/* IdSelector */
.id-form-selector {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.id-form-selector select {
    padding: 5px;
    width: inherit;
    font-size: 12px;
    border-radius: 3px;
    color: #514f4f;
}
.id-submit-button {
    font-size: 12px;
    padding: 7px 10px;
    border: none;
    border-radius: 3px;
    background: #3182ce;
    color: #fff;
    cursor: pointer;
}

.id-submit-button:hover {
    background-color: #2d78be;
}
select:focus {
    outline: none;
    border-color:#3182ce;
}

.download-section {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

#pdf-download-btn {
    background-color: #3182ce;
    color: #fff;
    padding:7px 10px;
    border-radius: 3px;
    border: 1px solid #3182ce;
    display: none;
    cursor: pointer;
}

.profile-report{
    font-size: 12px;
    display: none;
    padding: 10px 20px;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
    color: #333232;
}
.profile-report div {
    flex: 0 0 calc(50% - 8px);
}

.profile-report strong {
  font-weight: 500;
  color: #181818;
}
.report-section-header {
    color: #3182ce;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}

.table-header {
  border-bottom: 1px solid #666666;
}

table {
  border-collapse: collapse;  
}
tr {
  border-bottom: 1px solid #b5b5b5;
}
th {
    font-weight: 500;
}
th, td {
  padding: 5px;
  font-size: 10px;
  text-align: right;
}

.row-header {
  padding: 5px;
  text-align: left;
}

#natural-person-info-container, #legal-entity-info-container {
    display: none;
}

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

/* Investor classification details */
.investor-classification-details {
    color: #333232;
    font-size: 12px;
    padding: 10px 20px;
}
.classification-content{
  display: none;
}
#investor_classification {
  font-size: 14px;
  font-weight: 500;
  color: #181818;

}
.classification-content strong {
    font-weight: 500;
}
.classification-content ul{
    padding-left: 25px;
}


@media (max-width: 768px) {
  .container {
    max-width: 100%;
  }
  .id-form-selector{
    flex-direction: column;
  }
  .id-form-selector select {
    width: 100%;
  }
  .id-submit-button {
    width: 100%;
  }
  .profile-report div {
    flex: 0 0 100%;
  }
}
@media(max-width: 1000px) {
  .logo-container {
    flex-direction: column;
    padding: 5px 0;
  }
  .logo {
    left: 0;
    position: relative;
  }
}