@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

      .ang-root {
      --ang-primary: #1e73be;
        --ang-secondary: #9B51E0;
        --ang-white: #ffffff;
        --ang-gradient: linear-gradient(135deg, var(--ang-primary), var(--ang-secondary));
      }

      .ang-container {
        min-height: 100vh;
        padding: 0rem;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 1290px;
		margin-top: 50px;
		margin-bottom: 50px;
        background: none;
      }

      .ang-card {
        background: white;
        border-radius: 1rem;
        padding: 1.1rem;
        padding-top: 2rem;
        width: 100%;
        backdrop-filter: blur(10px);
        font-family: 'Inter', sans-serif;
        overflow-wrap: anywhere;
        box-shadow: 0 0 25px 0 rgba(0,0,0,0.1);
      }

      @media (min-width: 768px) {
        .ang-card {
          padding: 1.1rem;
          padding-top: 2rem;
        }
      }

      .ang-title {
        text-align: center;
        margin-bottom: 2rem;
      }

      .ang-title-main {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 0.3rem;
      }

      .ang-title-main i {
        width: 2rem;
        height: 2rem;
        color: var(--ang-primary);
      }

      .ang-title h2 {
        font-size: 1.8rem;
        font-weight: bold;
        background: var(--ang-gradient);
        -webkit-background-clip: text;
        color: transparent;
        margin: 0;
        padding: 0;
      }

      @media (min-width: 768px) {
        .ang-title h2 {
          font-size: 4rem;
          font-weight: bold;
        }
      }

      .ang-title h3 {
        font-size: 1.3rem;
        font-weight: 400;
        color: var(--ang-primary);
        margin: 0;
        padding: 0;
      }

      @media (min-width: 768px) {
        .ang-title h3 {
          font-weight: 400;
          font-size: 2rem;
        }
      }

      .ang-type-selector {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        padding: 0.6rem;
        background: rgba(255,255,255,0.5);
        margin-top: 0.3rem;
      }

      @media (min-width: 768px) {
        .ang-type-selector {
          grid-template-columns: repeat(4, 1fr);
        }
      }

      @media (min-width: 1024px) {
        .ang-type-selector {
          grid-template-columns: repeat(5, 1fr);
        }
      }

      .ang-type-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem;
        background: none;
        border: 2px solid rgba(30, 115, 190, 0.2);
        border-radius: 0.5rem;
        color: var(--ang-primary);
        cursor: pointer;
        transition: all 0.3s;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
      }
@media (min-width: 768px) {
  .ang-type-btn {
    font-size: 16px;
  }
}

      .ang-type-btn:hover {
        background: #0c9;
        color: #Ffffff;
        border-color: white;
      }

      .ang-type-btn.active {
        background: #0c9;
        color: #Ffffff;
        border-color: white;
      }

      .ang-type-btn i {
        width: 1.25rem;
        height: 1.25rem;
      }

      .ang-input-group {
        margin-bottom: 1rem;
      }

      .ang-input-label {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.25rem;
        font-family: 'Inter', sans-serif;
      }

      .ang-input-label span {
        font-size: 0.875rem;
        color: var(--ang-primary);
      }

      .ang-input-label .optional {
        color: var(--ang-secondary);
      }

      .ang-input-wrapper {
        position: relative;
        max-width: 100%;
        overflow: hidden;
      }

      .ang-input-wrapper input {
        width: 100%;
        padding: 0.75rem 2.5rem 0.75rem 1rem;
        border: 2px solid rgba(30, 115, 190, 0.2);
        border-radius: 0.5rem;
        font-size: 1rem;
        color: var(--ang-primary);
        transition: all 0.3s;
        font-family: 'Inter', sans-serif;
        box-sizing: border-box;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .ang-input-wrapper input:focus {
        outline: none;
        border-color: var(--ang-primary);
      }

      .ang-input-icon {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--ang-secondary);
        width: 1.25rem;
        height: 1.25rem;
      }

      /* Updated generate button animation */
      @keyframes pulse-glow {
        0% {
          box-shadow: 0 0 0 0 rgba(30, 115, 190, 0.4);
          transform: scale(1);
        }
        50% {
          box-shadow: 0 0 20px 10px rgba(155, 81, 224, 0.2);
          transform: scale(1.02);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(30, 115, 190, 0.4);
          transform: scale(1);
        }
      }

      @keyframes sparkle {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.6; transform: scale(1.2); }
      }

      .ang-generate-btn {
        width: 100%;
        padding: 1rem;
        margin-top: 35px;
        background: var(--ang-gradient);
        color: var(--ang-white);
        border: none;
        border-radius: 0.5rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        font-family: 'Inter', sans-serif;
        position: relative;
        overflow: hidden;
        animation: pulse-glow 2s infinite;
        transition: all 0.3s ease;
      }

      .ang-generate-btn:hover {
        transform: translateY(-3px);
        animation: none;
        box-shadow: 0 10px 20px rgba(30, 115, 190, 0.3);
      }

      .ang-generate-btn i {
        animation: sparkle 1.5s infinite;
      }

      .ang-generate-btn:hover i {
        animation: sparkle 0.8s infinite;
      }

      .ang-generate-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
      }

      .ang-result {
        background: white;
        padding-top: 1.5rem;
        margin-top: 20px;
        text-align: center;
      }

      .ang-result-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
      }

      .ang-result-header i {
        width: 1.5rem;
        height: 1.5rem;
        color: var(--ang-primary);
      }

      .ang-result-header h3 {
        font-size: 0.9rem;
        color: var(--ang-primary);
        margin: 0;
        padding: 0;
        font-family: 'Inter', sans-serif;
      }
      
      @media (min-width: 768px) {
        .ang-result-header h3 {
          font-size: 2rem;
        }
      }

      /* New styles for multiple names grid */
      .ang-names-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
      }

      @media (min-width: 768px) {
        .ang-names-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      .ang-name-card {
        background: rgba(255, 255, 255, 0.7);
        border-radius: 0.5rem;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(30, 115, 190, 0.1);
      }

      .ang-name-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
        border-color: var(--ang-primary);
      }

      .ang-name-text {
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--ang-primary);
        background: var(--ang-gradient);
        -webkit-background-clip: text;
        color: transparent;
        margin: 0;
        padding: 0;
        text-align: left;
      }

      #ang-generatedName {
        font-size: 1.7rem;
      font-weight: 700;
      color: var(--ang-primary);
      margin-top: 0rem;
      margin-bottom: 1.25rem;
      font-family: 'Inter', sans-serif;
      text-shadow: 0 1px 3px rgba(30, 115, 190, 0.2);
      background: var(--ang-gradient);
      -webkit-background-clip: text;
      color: transparent;
      position: relative;
      display: inline-block;
      }

      .ang-result-actions {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
      }

      .ang-action-btn {
      padding: 0.5rem;
      padding-bottom: 0rem;
      background: white;
      border: none;
      border-radius: 0.4rem;
      color: var(--ang-primary);
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
      }

      .ang-action-btn:hover {
        background: rgba(30, 115, 190, 0.1);
        color: #1e73be;
      }

      .ang-action-btn:hover i {
        color: #1e73be;
      }

      .ang-action-btn.active {
      color: #eab308;
      background: rgba(234, 179, 8, 0.1);      
      }

      .ang-hidden {
        display: none;
      }

      .ang-tabs {
        margin-top: 2.2rem;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 1rem;
        padding: 0rem;
        overflow: hidden;
      }

      .ang-tab-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 0.5rem;
        padding: 1rem;
      }

      .ang-tab-btn {
        display: flex;
        align-items: center;
        gap: 0.2rem;
        padding: 0.45rem 0.8rem;
        background: none;
        border: none;
        border-radius: 0.375rem;
        color: var(--ang-primary);
        cursor: pointer;
        transition: all 0.3s;
        font-family: 'Inter', sans-serif;
        box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
      }

      .ang-tab-btn:hover {
        background: rgba(30, 115, 190, 0.1);
        color: #1e73be;
      }

      .ang-tab-btn:hover i {
        color: #1e73be;
      }

      .ang-tab-btn.active {
        background: var(--ang-primary);
        color: var(--ang-white);
      }

     .ang-tab-content {
        display: none;
      }

      .ang-tab-content.active {
        display: block;
      }

      .ang-content-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.6rem;
        padding-left: 0.25rem;
        padding-right: 0.2rem;
      }

      .ang-content-header h3 {
        font-size: 0.9rem;
        color: #2d2d2d;
        margin: 0;
        padding: 0;
        font-family: 'Inter', sans-serif;
        font-weight: 700;
      }

      .ang-clear-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.25rem 0.5rem;
        background: none;
        border: none;
        border-radius: 0.375rem;
        color: #dc2626;
        cursor: pointer;
        transition: all 0.3s;
        font-family: 'Inter', sans-serif;
      }

      .ang-clear-btn:hover {
        background: #fee2e2;
        color: #dc2626;
      }

      .ang-clear-btn:hover i {
        color: #dc2626;
      }

      .ang-name-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      .ang-name-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--ang-white);
        border: 1px solid rgba(30, 115, 190, 0.2);
        border-radius: 5rem;
        transition: all 0.3s;
        font-family: 'Inter', sans-serif;
      }

      .ang-name-item:hover {
        border-color: var(--ang-primary);
      }

      .ang-name-info {
        display: flex;
        flex-direction: column;
      }

      .ang-name-date {
        font-size: 0.75rem;
        color: var(--ang-secondary);
      }

      .ang-name-actions {
        display: flex;
        gap: 0.5rem;
      }

      @keyframes ang-spin {
        to {
          transform: rotate(360deg);
        }
      }

      .ang-spinning {
        animation: ang-spin 1s linear infinite;
      }

      .ang-category-group {
      margin-bottom: 2rem;
      border-radius: 0.7rem;
      overflow: hidden;
        box-shadow: 0 0 8px 0 rgba(0,0,0,0.1);
      }

      .ang-category-title {
      background: #687ae8;
      padding: 7px;
      font-size: 1.2rem;
      color: var(--ang-white);
      text-align: center;
      margin-bottom: 0;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      position: relative;
      overflow: hidden;
      }
      
      .text-center{
        text-align: center !important;
      }