/* 
 * 博羚生物医药平台 - 组件样式
 * BioLinker Biopharmaceutical Platform - Components Stylesheet
 */

/* ====== 按钮组件 ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration-200) ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.btn:focus {
  outline: 2px solid var(--primary-500);
  /*outline-offset: 2px;*/
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* 主要按钮 */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: white;
  border-color: var(--primary-600);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
  border-color: var(--primary-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* 次要按钮 */
.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-600), var(--secondary-700));
  color: white;
  border-color: var(--secondary-600);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-700), var(--secondary-800));
  border-color: var(--secondary-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* 轮廓按钮 */
.btn-outline {
  background: transparent;
  color: var(--primary-600);
  border-color: var(--primary-600);
}

.btn-outline:hover {
  background: var(--primary-600);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}


/* 幽灵按钮 */
.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}

/* 危险按钮 */
.btn-danger {
  background: var(--error-500);
  color: white;
  border-color: var(--error-500);
}

.btn-danger:hover {
  background: var(--error-500);
  border-color: var(--error-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* 成功按钮 */
.btn-success {
  background: var(--success-500);
  color: white;
  border-color: var(--success-500);
}

.btn-success:hover {
  background: var(--success-600);
  border-color: var(--success-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* 按钮尺寸 */
.btn-small {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn-xl {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

/* 图标按钮 */
.btn-icon {
  padding: var(--space-3);
  width: 40px;
  height: 40px;
}

.btn-icon-small {
  padding: var(--space-2);
  width: 32px;
  height: 32px;
}

.btn-icon-large {
  padding: var(--space-4);
  width: 48px;
  height: 48px;
}

/* 全宽按钮 */
.btn-full {
  width: 100%;
}

/* 按钮组 */
.btn-group {
  display: inline-flex;
  border-radius: var(--radius);
  overflow: hidden;
}

.btn-group .btn {
  border-radius: 0;
  border-right-width: 0;
}

.btn-group .btn:first-child {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}

.btn-group .btn:last-child {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  border-right-width: 1px;
}

/* ====== 世界地图模块 ====== */
.world-map-section {
  padding: var(--space-12) 0;
  background-color: var(--gray-50);
}

.world-map-section .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.world-map-section .section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.world-map-section .section-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.world-map-section .section-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ====== 表单组件 ====== */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}

.form-label.required::after {
  content: " *";
  color: var(--error-500);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  background: white;
  transition: all var(--duration-200) ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px var(--primary-100);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: var(--error-500);
}

.form-input.error:focus,
.form-textarea.error:focus,
.form-select.error:focus {
  box-shadow: 0 0 0 3px var(--error-100);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");*/
  background-position: right var(--space-3) center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right:  var(--space-10);
}

.form-help {
  margin-top: var(--space-1);
  font-size: var(--text-xs);
  color: var(--gray-500);
}

.form-error {
  margin-top: var(--space-1);
  font-size: var(--text-xs);
  color: var(--error-500);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* 复选框和单选框 */
.form-checkbox,
.form-radio {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.form-checkbox input,
.form-radio input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--primary-600);
}

.form-checkbox label,
.form-radio label {
  font-weight: 400;
  margin: 0;
  cursor: pointer;
  line-height: 1.5;
}

/* 开关按钮 */
.form-switch {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.switch-input {
  appearance: none;
  width: 44px;
  height: 24px;
  background: var(--gray-300);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: background var(--duration-200) ease;
}

.switch-input:checked {
  background: var(--primary-600);
}

.switch-input::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: var(--radius-full);
  transition: transform var(--duration-200) ease;
}

.switch-input:checked::after {
  transform: translateX(20px);
}

/* 文件上传 */
.form-file {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.form-file input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.form-file-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  background: var(--gray-50);
  color: var(--gray-600);
  transition: all var(--duration-200) ease;
}

.form-file:hover .form-file-label,
.form-file input:focus + .form-file-label {
  border-color: var(--primary-500);
  background: var(--primary-50);
  color: var(--primary-700);
}

/* 输入组 */
.input-group {
  display: flex;
  width: 100%;
}

.input-group-prepend,
.input-group-append {
  display: flex;
  align-items: center;
  padding: var(--space-3);
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--gray-600);
  font-size: var(--text-sm);
  white-space: nowrap;
}

.input-group-prepend {
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
}

.input-group-append {
  border-left: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.input-group .form-input {
  flex: 1;
  border-radius: 0;
}

.input-group .form-input:only-child {
  border-radius: var(--radius);
}

/* ====== 卡片组件 ====== */
.card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-300) ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.card-subtitle {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin: var(--space-1) 0 0;
}

.card-body {
  padding: var(--space-6);
}

.card-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.card-compact .card-header,
.card-compact .card-body,
.card-compact .card-footer {
  padding: var(--space-4);
}

/* ====== 徽章组件 ====== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  border: 1px solid transparent;
}

.badge-primary {
  background: var(--primary-100);
  color: var(--primary-800);
  border-color: var(--primary-200);
}

.badge-secondary {
  background: var(--secondary-100);
  color: var(--secondary-800);
  border-color: var(--secondary-200);
}

.badge-success {
  background: var(--success-100);
  color: var(--success-800);
  border-color: var(--success-200);
}

.badge-warning {
  background: var(--warning-100);
  color: var(--warning-800);
  border-color: var(--warning-200);
}

.badge-error {
  background: var(--error-100);
  color: var(--error-800);
  border-color: var(--error-200);
}

.badge-gray {
  background: var(--gray-100);
  color: var(--gray-800);
  border-color: var(--gray-200);
}

.badge-pill {
  border-radius: var(--radius-full);
}

.badge-outline {
  background: transparent;
}

.badge-outline.badge-primary {
  color: var(--primary-600);
  border-color: var(--primary-600);
}

.badge-outline.badge-secondary {
  color: var(--secondary-600);
  border-color: var(--secondary-600);
}

/* ====== 警告框组件 ====== */
.alert {
  padding: var(--space-4);
  border-radius: var(--radius);
  border: 1px solid transparent;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.alert-primary {
  background: var(--primary-50);
  color: var(--primary-800);
  border-color: var(--primary-200);
}

.alert-secondary {
  background: var(--secondary-50);
  color: var(--secondary-800);
  border-color: var(--secondary-200);
}

.alert.alert-success {
  background: var(--success-50);
  color: var(--success-800);
  border-color: var(--success-200);
}

.alert-warning {
  background: var(--warning-50);
  color: var(--warning-800);
  border-color: var(--warning-200);
}

.alert-error {
  background: var(--error-50);
  color: var(--error-800);
  border-color: var(--error-200);
}

.alert-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.alert-content {
  flex: 1;
}

.alert-title {
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.alert-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: inherit;
  opacity: 0.7;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity var(--duration-200) ease;
}

.alert-close:hover {
  opacity: 1;
}

/* ====== 模态框组件 ====== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-300) ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--duration-300) ease;
  margin: var(--space-4);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: var(--text-xl);
  color: var(--gray-500);
  cursor: pointer;
  padding: var(--space-1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  transition: all var(--duration-200) ease;
}

.modal-close:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

.modal-body {
  padding: var(--space-6);
  overflow-y: auto;
  max-height: calc(90vh - 200px);
}

.modal-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
}

.modal-large {
  max-width: 800px;
}

.modal-small {
  max-width: 400px;
}

.modal-full {
  max-width: 95vw;
  max-height: 95vh;
}

/* ====== 标签页组件 ====== */
.tabs {
  width: 100%;
}

.tab-list {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: var(--space-6);
}

.tab-button {
  padding: var(--space-3) var(--space-4);
  background: none;
  border: none;
  color: var(--gray-600);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-200) ease;
  border-bottom: 2px solid transparent;
  position: relative;
}

.tab-button:hover {
  color: var(--primary-600);
}

.tab-button.active {
  color: var(--primary-600);
  border-bottom-color: var(--primary-600);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ====== 进度条组件 ====== */
.progress {
  width: 100%;
  height: 8px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
  border-radius: var(--radius-full);
  transition: width var(--duration-500) ease;
  position: relative;
}

.progress-bar.animated::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.progress-thin {
  height: 4px;
}

.progress-thick {
  height: 12px;
}

/* ====== 加载器组件 ====== */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--primary-600);
  border-radius: var(--radius-full);
  animation: spin 1s linear infinite;
}

.spinner-small {
  width: 16px;
  height: 16px;
  border-width: 1.5px;
}

.spinner-large {
  width: 32px;
  height: 32px;
  border-width: 3px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.dots-loader {
  display: flex;
  gap: 4px;
  align-items: center;
}

.dots-loader span {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--primary-600);
  animation: dots-bounce 1.4s infinite ease-in-out;
}

.dots-loader span:nth-child(1) {
  animation-delay: -0.32s;
}

.dots-loader span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes dots-bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* ====== 工具提示组件 ====== */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip-content {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-900);
  color: white;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius);
  font-size: var(--text-xs);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-200) ease;
  z-index: 1000;
}

.tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--gray-900);
}

.tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

/* ====== 面包屑组件 ====== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin-bottom: var(--space-4);
}

.breadcrumb a {
  color: var(--primary-600);
  transition: color var(--duration-200) ease;
}

.breadcrumb a:hover {
  color: var(--primary-700);
}

.breadcrumb-separator {
  color: var(--gray-400);
}

/* ====== 分页组件 ====== */
.pagination {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  justify-content: center;
  margin: var(--space-8) 0;
}

.pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-300);
  background: white;
  color: var(--gray-700);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration-200) ease;
  font-size: var(--text-sm);
  font-weight: 500;
}

.pagination-btn:hover {
  border-color: var(--primary-500);
  color: var(--primary-600);
}

.pagination-btn.active {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: white;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-info {
  color: var(--gray-600);
  font-size: var(--text-sm);
  margin: 0 var(--space-4);
}

/* ====== 下拉菜单组件 ====== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration-200) ease;
}

.dropdown-toggle:hover {
  border-color: var(--primary-500);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--duration-200) ease;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  color: var(--gray-700);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all var(--duration-200) ease;
  border-bottom: 1px solid var(--gray-100);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: var(--primary-50);
  color: var(--primary-600);
}

.dropdown-divider {
  height: 1px;
  background: var(--gray-200);
  margin: var(--space-1) 0;
}

/* ====== 响应式工具类 ====== */
@media (max-width: 639px) {
  .modal {
    margin: var(--space-2);
    max-height: calc(100vh - 1rem);
  }

  .modal-body {
    max-height: calc(100vh - 230px);
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    border-right-width: 1px;
    border-bottom-width: 0;
    border-radius: 0;
  }

  .btn-group .btn:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .btn-group .btn:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
    border-bottom-width: 1px;
  }

  .pagination {
    gap: var(--space-1);
  }

  .pagination-btn {
    width: 36px;
    height: 36px;
    font-size: var(--text-xs);
  }
}

/* ====== 动画工具类 ====== */
.fade-in {
  animation: fadeIn var(--duration-500) ease;
}

.fade-out {
  animation: fadeOut var(--duration-500) ease;
}

.slide-up {
  animation: slideUp var(--duration-500) ease;
}

.slide-down {
  animation: slideDown var(--duration-500) ease;
}

.scale-in {
  animation: scaleIn var(--duration-300) ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ====== 工具类 ====== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.text-primary {
  color: var(--primary-600);
}

.text-secondary {
  color: var(--secondary-600);
}

.text-success {
  color: var(--success-600);
}

.text-warning {
  color: var(--warning-600);
}

.text-error {
  color: var(--error-600);
}

.text-muted {
  color: var(--gray-500);
}

.bg-primary {
  background-color: var(--primary-600);
}

.bg-secondary {
  background-color: var(--secondary-600);
}

.bg-light {
  background-color: var(--gray-100);
}

.rounded {
  border-radius: var(--radius);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-full {
  border-radius: var(--radius-full);
}

.shadow {
  box-shadow: var(--shadow);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.m-0 {
  margin: 0;
}
.m-1 {
  margin: var(--space-1);
}
.m-2 {
  margin: var(--space-2);
}
.m-3 {
  margin: var(--space-3);
}
.m-4 {
  margin: var(--space-4);
}

.p-0 {
  padding: 0;
}
.p-1 {
  padding: var(--space-1);
}
.p-2 {
  padding: var(--space-2);
}
.p-3 {
  padding: var(--space-3);
}
.p-4 {
  padding: var(--space-4);
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.geo-tag{
  margin-right: 10px;
}