.privacy-policy-modal {
    display: none;
    position: fixed;
    z-index: 1003;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }
  
  .privacy-policy-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 40px 30px 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    position: relative;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
  }
  
  #privacyPolicyContent {
    overflow-y: auto;
    max-height: calc(70vh - 60px);
    padding-right: 20px;
  }
  
  .privacy-policy-modal-close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
  }
  
  /* Scrollbar personalizada */
  #privacyPolicyContent::-webkit-scrollbar {
    width: 8px;
  }
  
  #privacyPolicyContent::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  
  #privacyPolicyContent::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }
  
  #privacyPolicyContent::-webkit-scrollbar-thumb:hover {
    background: #555;
  }