/* Document Dropdown Styles */
.document-dropdown {
  position: relative;
  cursor: pointer;
}

.document-dropdown .link-main {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #e6eef6;
  transition: all 0.2s;
}

.document-dropdown .link-main:hover {
  background: rgba(255,255,255,0.04);
  border-color: #06b6d4;
  transform: translateY(-1px);
}

.document-dropdown .link-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #06b6d4;
  border-radius: 6px;
  color: #061014;
  font-size: 12px;
  font-weight: 700;
}

.document-dropdown .link-text {
  flex: 1;
}

.document-dropdown .link-title {
  font-weight: 600;
  margin: 0 0 2px 0;
}

.document-dropdown .link-desc {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

.document-dropdown .link-arrow {
  color: #94a3b8;
  font-size: 14px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.document-dropdown.active .link-arrow {
  transform: rotate(180deg);
}

.document-options {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  margin-top: 0;
}

.document-dropdown.active .document-options {
  max-height: 300px;
  opacity: 1;
  margin-top: 8px;
}

.document-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  text-decoration: none;
  color: #e6eef6;
  margin-bottom: 6px;
  transition: all 0.2s;
}

.document-option:last-child {
  margin-bottom: 0;
}

.document-option:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: #06b6d4;
  transform: translateX(4px);
}

.document-option .doc-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.document-option span:last-child {
  font-size: 14px;
  font-weight: 500;
}
