@font-face {
  font-family: GILROY;
  src: url(https://cdn.fsksoft.com/fonts/gilroy/GILROY-300.TTF) format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: GILROY;
  src: url(https://cdn.fsksoft.com/fonts/gilroy/GILROY-400.TTF) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: GILROY;
  src: url(https://cdn.fsksoft.com/fonts/gilroy/GILROY-500.TTF) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: GILROY;
  src: url(https://cdn.fsksoft.com/fonts/gilroy/GILROY-600.TTF) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: GILROY;
  src: url(https://cdn.fsksoft.com/fonts/gilroy/GILROY-700.TTF) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: GILROY;
  src: url(https://cdn.fsksoft.com/fonts/gilroy/GILROY-800.TTF) format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap
}

:root {
  --tp-50: #111115;
  --tp-100: #16161a;
  --tp-200: #202025;
  --tp-300: #2a2a30;
  --tp-400: #3a3a41;
  --tp-500: #9ca3af;
  --tp-600: #d1d5db;
  --tp-700: #e5e7eb;
  --tp-800: #f3f4f6;
  --tp-900: #f9fafb;
  --tp-blue-100: #d7e8ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'GILROY', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--tp-50);
  color: var(--tp-800);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
}

.header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.logo-img {
  width: 48px;
  height: 48px;
}

.logo-img-large {
  width: 220px;
  height: 80px;
  object-fit: contain;
}

.subtitle {
  font-size: 0.95rem;
  color: var(--tp-500);
  font-weight: 400;
}

.nav-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--tp-100);
  border-radius: 10px;
  padding: 0.4rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--tp-200);
  gap: 5px;
}

.nav-tab {
  flex: 1;
  background: none;
  border: none;
  color: var(--tp-500);
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-family: 'GILROY';
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.nav-tab.active {
  background: var(--tp-blue-100);
  color: var(--tp-50);
  box-shadow: 0 2px 8px rgba(215, 232, 255, 0.3);
}

.nav-tab:hover:not(.active) {
  background: var(--tp-200);
  color: var(--tp-700);
}

.section {
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--tp-800);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.upload-main {
  text-align: center;
}

.upload-zone {
  border: 2px dashed var(--tp-300);
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  background: var(--tp-50);
  width: 500px;
}

.upload-zone:hover {
  border-color: var(--tp-blue-100);
  background: rgba(215, 232, 255, 0.03);
}

.upload-zone.dragover {
  border-color: var(--tp-blue-100);
  background: rgba(215, 232, 255, 0.05);
  transform: scale(1.01);
}

.upload-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: var(--tp-200);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-blue-100);
  font-size: 2rem;
}

.upload-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--tp-700);
  margin-bottom: 0.5rem;
}

.upload-subtitle {
  color: var(--tp-500);
  font-size: 0.9rem;
}

.upload-info {
  background: var(--tp-50);
  border-radius: 10px;
  padding: 1.2rem;
  border: 1px solid var(--tp-200);
  width: 500px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--tp-600);
  font-size: 0.9rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  color: var(--tp-blue-100);
  width: 1.2rem;
}

.selected-files {
  background: var(--tp-50);
  border-radius: 15px;
  padding: 1rem;
  border: 1px solid var(--tp-200);
  min-width: 500px;
}

.selected-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--tp-800);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.files-preview {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.file-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: var(--tp-100);
  border-radius: 8px;
  border: 1px solid var(--tp-200);
  transition: all 0.2s ease;
}

.file-preview:hover {
  border-color: var(--tp-300);
}

.upload-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
}

.circular-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  backdrop-filter: blur(4px);
}

.progress-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring-circle {
  transition: stroke-dashoffset 0.3s ease;
}

.progress-ring-progress {
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 0.3s ease;
  stroke-linecap: round;
}

.progress-text {
  position: absolute;
  text-align: center;
  color: var(--tp-800);
}

.progress-percentage {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tp-blue-100);
  margin-bottom: 0.2rem;
}

.progress-label {
  font-size: 0.8rem;
  color: var(--tp-500);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hypershare-main {
  text-align: center;
  margin-bottom: 2rem;
}

.create-room-btn {
  background: var(--tp-50);
  border: 2px solid var(--tp-200);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'GILROY';
  color: var(--tp-800);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.create-room-btn:hover {
  background: var(--tp-100);
  border-color: var(--tp-blue-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(215, 232, 255, 0.2);
}

.create-room-btn i {
  font-size: 3rem;
  color: var(--tp-blue-100);
}

.action-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.action-subtitle {
  font-size: 0.9rem;
  color: var(--tp-500);
}

.room-info {
  background: var(--tp-50);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--tp-200);
  text-align: center;
}

.room-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--tp-800);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.room-id {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--tp-blue-100);
  letter-spacing: 3px;
}

.share-room-section {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-direction: column;
}

.share-option {
  text-align: center;
  width: 100%;
}

.share-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--tp-800);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.share-url-container {
  display: flex;
  gap: 0.5rem;
  width: 500px;
  margin: 0 auto;
  align-items: stretch;
}

.share-url-input {
  flex: 1;
  background: var(--tp-100);
  border: 1px solid var(--tp-200);
  border-radius: 8px;
  padding: 0.8rem;
  font-size: 0.85rem;
  color: var(--tp-600);
  font-family: 'GILROY';
  text-align: center;
}

.qr-container {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  display: inline-flex;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-container img {
    border-radius: 6px;
}

.file-download-display {
  text-align: center;
  padding: 2rem;
}

.file-download-header {
  margin-bottom: 2rem;
}

.file-preview-card {
  background: var(--tp-50);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--tp-200);
}

.file-preview-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.file-thumbnail-large {
  width: 6rem;
  height: 6rem;
  border-radius: 12px;
  background: var(--tp-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--tp-500);
  flex-shrink: 0;
}

.file-details-section {
  flex: 1;
  min-width: 0;
}

.file-name-display {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tp-800);
  margin-bottom: 0.8rem;
  word-break: break-word;
}

.file-meta-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--tp-500);
  font-size: 0.95rem;
}

.meta-item i {
  color: var(--tp-blue-100);
  width: 1.2rem;
}

.file-actions-section {
  text-align: center;
}

.share-section {
  background: var(--tp-50);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--tp-200);
}

.share-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--tp-800);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.share-methods {
  display: grid;
  gap: 2rem;
}

.share-method {
  text-align: center;
}

.info-note {
  background: var(--tp-100);
  border: 1px solid var(--tp-200);
  border-radius: 10px;
  padding: 1.2rem;
  color: var(--tp-500);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
}

.info-note i {
  color: var(--tp-blue-100);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.file-thumbnail {
  width: 3rem;
  height: 3rem;
  border-radius: 6px;
  object-fit: cover;
  background: var(--tp-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-500);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.file-info {
  flex: 1;
  min-width: 0;
}

.file-name {
  font-weight: 500;
  color: var(--tp-800);
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.file-details {
  color: var(--tp-500);
  font-size: 0.8rem;
}

.file-status {
  color: var(--tp-400);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.file-actions {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.btn {
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 6px;
  font-family: 'GILROY';
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.8rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--tp-blue-100);
  color: var(--tp-50);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(215, 232, 255, 0.3);
}

.btn-secondary {
  background: var(--tp-200);
  color: var(--tp-700);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--tp-300);
  color: var(--tp-800);
}

.btn-danger {
  background: #ef4444;
  color: white;
}

.btn-danger:hover:not(:disabled) {
  background: #dc2626;
  transform: translateY(-1px);
}

.btn-icon {
  padding: 0.4rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 10px;
}

.client-list {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.client-item {
  background: var(--tp-50);
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid var(--tp-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.client-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--tp-blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-50);
  font-weight: 600;
  font-size: 0.9rem;
}

.client-name {
  font-weight: 500;
  color: var(--tp-800);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  margin-left: 0.5rem;
}

.p2p-zone {
  border: 2px dashed var(--tp-300);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
  background: var(--tp-50);
  cursor: pointer;
  width: 500px;
}

.p2p-zone.active {
  border-color: var(--tp-blue-100);
  background: rgba(215, 232, 255, 0.03);
}

.p2p-zone:hover.active {
  background: rgba(215, 232, 255, 0.05);
}

.recipient-grid {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.recipient-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--tp-50);
  border: 1px solid var(--tp-200);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.recipient-item:hover {
  background: var(--tp-100);
}

.recipient-item input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--tp-blue-100);
}

.transfer-item {
  background: var(--tp-50);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border: 1px solid var(--tp-200);
  transition: border-color 0.3s ease;
  min-width: 400px;
}

.transfer-item.success {
    border-color: #10b981;
}

.transfer-item.error {
    border-color: #ef4444;
}

.transfer-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.transfer-status {
  font-size: 0.8rem;
  color: var(--tp-500);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.loading {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--tp-300);
  border-radius: 50%;
  border-top-color: var(--tp-blue-100);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hidden {
  display: none !important;
}

.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: var(--tp-200);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.8rem;
}

.progress-fill {
  height: 100%;
  background: var(--tp-blue-100);
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 0%;
}

.notification {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: var(--tp-100);
  border: 1px solid var(--tp-200);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--tp-800);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(calc(100% + 1rem));
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1000;
  max-width: 300px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  background: #10b981;
  color: white;
  border-color: #059669;
}

.notification.error {
  background: #ef4444;
  color: white;
  border-color: #dc2626;
}

.notification.info {
  background: var(--tp-blue-100);
  color: var(--tp-50);
  border-color: #a3bffa;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  padding: 1rem;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--tp-100);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 500px;
  width: 100%;
  border: 1px solid var(--tp-200);
  transform: scale(0.9);
  transition: transform 0.2s ease;
  position: relative;
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-header {
  margin-bottom: 1rem;
  position: relative;
}

.modal-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--tp-800);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

input[type="text"], input[type="file"] {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--tp-300);
  border-radius: 6px;
  background: var(--tp-50);
  color: var(--tp-800);
  font-family: 'GILROY';
  font-size: 0.9rem;
}

input[type="text"]:focus, input[type="file"]:focus {
  outline: none;
  border-color: var(--tp-blue-100);
  box-shadow: 0 0 0 2px rgba(215, 232, 255, 0.2);
}

input[type="text"]:disabled {
  background: var(--tp-200);
  color: var(--tp-400);
  cursor: not-allowed;
}

.file-drag-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(215, 232, 255, 0.05);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.file-drag-overlay.show {
  opacity: 1;
  visibility: visible;
}

.drag-message {
  background: var(--tp-100);
  border: 2px dashed var(--tp-blue-100);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  color: var(--tp-800);
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.drag-message i {
  font-size: 3rem;
  color: var(--tp-blue-100);
}

.empty-state {
  text-align: center;
  padding: 2rem;
  color: var(--tp-500);
}

.empty-state .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--tp-400);
}

.loading-state {
  text-align: center;
  padding: 2rem;
}

.error-state {
  text-align: center;
  padding: 2rem;
  color: var(--tp-500);
}

.error-state .error-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ef4444;
}

.error-state h3 {
  color: var(--tp-800);
  margin-bottom: 1rem;
}

.status-box {
  border-radius: 10px;
  padding: 1.2rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
  width: 500px;
}

.status-box.info {
  background: rgba(215, 232, 255, 0.1);
  border: 1px solid var(--tp-blue-100);
  color: var(--tp-blue-100);
}

.status-box.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #10b981;
}

.status-box.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

@media (max-width: 768px) {
  .container {
    padding: 0.8rem;
  }
  
  .header {
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
  }
  
  .logo-img-large {
    width: 180px;
    height: 70px;
  }
  
  .nav-tabs {
    max-width: calc(100% - 1.6rem);
  }

  .share-room-section {
    grid-template-columns: 1fr;
    width: 100%;
  }
  
  .create-room-btn {
    flex-direction: column;
    gap: 1rem;
  }
  
  .file-preview-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .upload-zone {
    padding: 2rem;
  }
  
  .upload-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
  
  .modal-content {
    margin: 1rem;
    width: auto;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .section {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0.5rem;
  }

  .logo-img-large {
    width: 150px;
    height: 60px;
  }
  
  .section {
    padding: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .file-thumbnail-large {
    width: 4rem;
    height: 4rem;
    font-size: 1.8rem;
  }
  
  .upload-zone {
    padding: 1.5rem;
  }
  
  .room-id {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  
  .nav-tab {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  
  .file-name-display {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 992px) {
  .upload-zone {
    width: 100%;
  }

  .upload-info {
    width: 100%;
  }

  .selected-files {
    min-width: 100%;
  }

  .share-url-container {
    width: 100%;
  }

  .p2p-zone {
    width: 100%;
  }

  .status-box {
    width: 100%;
  }
}