/* Mobile Documents Section */
.mobile-documents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 32px;
  margin-top: 75px;
}

/* Header with icon */
.mobile-documents-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 16px;
  gap: 4px;
  width: 100%;
  height: 30px;
  box-sizing: border-box;
}

.mobile-documents-header img {
  width: 20px;
  height: 20px;
}

.mobile-documents-header h2 {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--page-title-color);
  margin: 0;
}

/* Tabs Container */
.mobile-documents-tabs {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px;
  gap: 4px;
  margin: 0 16px;
  width: calc(100% - 32px);
  background: #ffffff;
  border: 1px solid var(--table-border-color);
  box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
  border-radius: 12px;
}

/* Tab Button */
.mobile-documents-tab {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 8px;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-documents-tab .tab-text {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
}

/* Active Tab */
.mobile-documents-tab.active {
  background: var(--mp-green, #03FF88) !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 24px;
}

.mobile-documents-tab.active .tab-text {
  color: #000000 !important;
  font-weight: 700;
}

/* Documents List */
.mobile-documents-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 16px;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

/* Document Item */
.mobile-document-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  width: 100%;
  border: 1px solid var(--table-border-color);
  border-radius: 12px;
}

/* Document Info */
.mobile-document-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2px 0px;
  gap: 11px;
  flex: 1;
  min-width: 0;
}

.mobile-document-info img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.mobile-document-name {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--page-title-color);
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
}

/* Download Button */
.mobile-download-button {
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-download-button img {
  width: 24px;
  height: 24px;
}
