
    /* URLs Table */
    .urls-container {
      background: var(--card-bg);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 1.5rem;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .section-title {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -0.5rem;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--primary);
      border-radius: 2px;
    }

    .table-container {
      overflow-x: auto;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
    }

    th {
      background: rgba(2, 6, 23, 0.7);
      color: var(--gray);
      font-weight: 600;
      text-align: left;
      padding: 1rem;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    td {
      padding: 1rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      vertical-align: middle;
    }

    tr:last-child td {
      border-bottom: none;
    }

    tr:hover td {
      background: rgba(99, 102, 241, 0.05);
    }

    .short-code {
      font-family: monospace;
      color: var(--primary);
      font-weight: 500;
    }

    .original-url {
      max-width: 300px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .original-url a {
      color: var(--light);
      text-decoration: none;
      transition: color 0.3s;
    }

    .original-url a:hover {
      color: var(--primary);
      text-decoration: underline;
    }

    .date {
      color: var(--gray);
      font-size: 0.9rem;
    }

    .clicks {
      text-align: center;
      font-weight: 600;
    }

    .copy-btn {
      background: var(--primary);
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 0.375rem;
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .copy-btn:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
    }

    .copy-btn.copied {
      background: var(--success);
    }

    .empty-state {
      text-align: center;
      padding: 3rem;
      color: var(--gray);
    }

    .empty-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: var(--primary);
      opacity: 0.5;
    }

    .empty-title {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      color: var(--light);
    }

    .empty-description {
      margin-bottom: 1.5rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .profile-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
      }

      .user-stats {
        width: 100%;
        justify-content: space-between;
      }

      th,
      td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
      }

      .copy-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
      }
    }
