    body {
      background-color: #272737;
      font-family: Sony Sketch EF, sans-serif;
      color: #fff;
    }
    /* Header styling */
    header.toolbar {
      background-color: #272727;/*#272727*/
      padding: 1rem 0;
    }
    header.toolbar h1 {
      color: #fff;
      font-size: 1.5rem;
      margin: 0;
      text-align: center;
    }
    header.toolbar .nav-link {
      color: #fff;
      font-weight: 500;
    }   
    /* SEARCH CONTAINER */
    .search-container {
      background-color: #222;/*#333*/
    }
    .search-container input {
      border: none;
      border-radius: 4px;
    }
    .search-container button {
      background-color: #28a745;
      border: none;
      color: #fff;
    }
    /* OFFCANVAS (MENU) */
    .offcanvas {
      background-color: #272737;/*#272737*/
    }
    .offcanvas .nav-link {
      color: #fff;
    }
    /* APP CARD */
    .app-card {
      border-radius: 8px;
      overflow: hidden;
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .app-card img {
      border-radius: 8px;
      width: 100%;
      height: auto;
      }  
          /* APP ICON */
    .app-icon {
      max-width: 200px;
      border-radius: 8px;
    }
    /* APP DETAILS */
    .app-details h2 {
      font-size: 1.75rem;
      font-weight: bold;
    }
    .app-details p {
      margin-bottom: 0.5rem;
    }
    .btn-share {
      background-color: #6c757d;
      border: none;
      color: #fff;
    }
    .btn-share:hover {
      background-color: #5a6268;
    }
    /* CAROUSEL (Screenshots) */
    #screenshotCarousel .carousel-item img {
      width: 100%;
      height: 400px;/* max-height 400*/
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
    }            
    /* Centered card styling */
    .edit-card {
      max-width: 600px;
      margin: 2rem auto;
      background-color: #fff;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    /* Form elements */
    .edit-card .form-label {
      font-weight: 500;
      color: #000;
    }
    .edit-card .form-control {
      border-radius: 4px;
    }
        /* DASHBOARD CARD */
    .dashboard-card {
      border: none;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }
    .dashboard-card .card-body {
      padding: 20px;
    }
    /* TABLE STYLING */
    .table thead {
      background-color: #28a745;
      color: #fff;
    }
    .table-striped tbody tr:nth-of-type(odd) {
      background-color: #f2f2f2;
    }
    .table-bordered {
      border: 1px solid #dee2e6;
    }  
        /* BUTTONS */
    .btn-primary {
      background-color: #28a745;
      border: none;
      transition: background-color 0.3s ease;
    }
    .btn-primary:hover {
      background-color: #218838;
    }
    .btn-secondary {
      background-color: #6c757d;
      border: none;
    }
    .btn-secondary:hover {
      background-color: #5a6268;
    }   
  /*UPLOADS CARD*/  
    .upload-card {
      max-width: 600px;
      margin: 2rem auto;
      background-color: #272727;
      color: #fff;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
        /* Progress Bar styling */
    .progress-container {
      width: 100%;
      height: 20px;
      background-color: #e9ecef;
      border-radius: 8px;
      margin-top: 20px;
      overflow: hidden;
      display: none;
    }
    .progress-bar {
      height: 100%;
      width: 0%;
      background-color: #4caf50;
      transition: width 0.2s ease-in-out;
    }   
    /*REGISTER ACCOUNT*/
    .card {
      border: none;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
      .card-content {
      padding: 20px;
    }    
    .card h2 {
      font-weight: bold;
      color: #333;
    }
    .btn-primary {
      background-color: #28a745;
      border: none;
    }
    .btn-primary:hover {
      background-color: #218838;
    }
    .alert-danger p {
      margin-bottom: 0.5rem;
    }
    a {
      text-decoration: none;
    }   
        /* Centered card styling (similar to registration form) */
    .assistant-card {
      max-width: 800px;
      margin: 2rem auto;
      background-color: #fff;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    /* Form elements */
    .assistant-card .form-label {
      font-weight: 500;
    }
    .assistant-card .form-control {
      border-radius: 4px;
    }
    /* Table styling */
    .assistant-card .table-responsive {
      margin-top: 2rem;
    }             
    /* Footer styling */
    footer.footer {
      background-color: #272737;
      padding: 1rem 0;
      color: #fff;
      text-align: center;
    }
    footer.footer a {
      color: #fff;
      text-decoration: none;
      margin-right: 1rem;
    }
    footer.footer p {
      margin: 0;
    }
    .banner-wrapper {
            text-align: center; /* Ensures inline-block elements like img are centered */
            width: 100%;
        }

        /* Simulating the UIkit animation class for this preview */
        .uk-animation-slide-right {
            animation: uk-slide-right 0.5s ease-out both;
        }

        @keyframes uk-slide-right {
            0% {
                transform: translateX(100px);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Styling for the placeholder since the local image path won't load here */
        .img-fallback {
            display: none;
            height: 75px;
            padding: 0 20px;
            border: 2px dashed #555;
            color: #aaa;
            line-height: 75px;
            border-radius: 8px;
            background: rgba(0,0,0,0.2);
        }