body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9f9;
    color: #222;
  }
  
  .page-title {
    text-align: center;
    padding: 30px 0 10px;
    font-size: 2.5rem;
    color: #333;
  }
  
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px;
  }
  
  .category-card {
    position: relative;
    display: block;
    height: 250px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .category-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  
  .label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  }
  
  .site-footer {
    text-align: center;
    background: #222;
    color: #bbb;
    padding: 20px;
    font-size: 0.9rem;
  }
  .createPageButtton{
    height: 30px;
    width: 200px;
    color: white;
    background-color: black;
    border-radius: 10px;
    position: fixed;
    border: none; cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 20px;
  }
  .createPageButtton:hover{
    color: black;
    background-color: white;
    box-shadow: 0 0 10px black;
  }

  .creatNewPagePopup {
    color: white;
    background: rgba(90, 90, 90, 0.877);
    backdrop-filter: blur(3px);
    width: 100%;
    max-width: 400px;
    display: none;
    padding: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    animation: fadeInUp 0.5s ease;
    position: fixed;
    padding-right: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
  }
  
  .creatNewPagePopup h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
  }
  
  .creatNewPagePopup input[type="text"],
  .creatNewPagePopup input[type="url"],
  .creatNewPagePopup input[type="image"],
  .creatNewPagePopup select {
    width: 100%;
    padding: 12px 14px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .creatNewPagePopup input[type="text"]:focus,
  .creatNewPagePopup input[type="url"]:focus,
  .creatNewPagePopup input[type="image"]:focus,
  .creatNewPagePopup select:focus {
    border-color: #3a42b7;
    outline: none;
    box-shadow: 0 0 5px rgba(58, 66, 183, 0.3);
  }

  .creatNewPagePopup select {
    background: #f9f9f9;
  }
  #createNewPageButton {
    padding: 12px 24px;
    background-color: #4CAF50; /* green */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  #createNewPageButton:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  #createNewPageButton:active {
    transform: scale(0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  .closeCreatNewPagePopup {
    background-color: transparent;
    color: #ff4d4d;
    border: 2px solid #ff4d4d;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .closeCreatNewPagePopup:hover {
    background-color: #ff4d4d;
    color: white;
  }
  
  .closeCreatNewPagePopup:active {
    transform: scale(0.95);
  }
  
  