  /* Responsif untuk toast notification */
    .toast-container {
      position: fixed;
      top: 10px;
      left: 0;
      right: 0;
      z-index: 9999;
      width: 100%;
      padding: 10px;
      display: flex;
      justify-content: center;
    }
    
    .toast {
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      overflow: hidden;
      border: none;
      background-color: white;
      padding: 15px;
    }
    
    .toast-header {
      background-color: transparent;
      border-bottom: none;
      padding: 0;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }
    
    .toast-header img {
      width: 28px;
      height: 28px;
      margin-right: 8px;
    }
    
    .toast-header .app-title {
      color: #5f6368;
      font-size: 16px;
      font-weight: 500;
      display: flex;
      align-items: center;
    }
    
    .toast-header .app-title small {
      color: #80868b;
      font-size: 13px;
      margin-left: 5px;
    }
    
    .toast-header .btn-close {
      margin-left: auto;
      opacity: 0.6;
      padding: 0;
    }
    
    .toast-body {
      padding: 0;
      display: flex;
      justify-content: center;
      background-color: transparent;
    }
    
    #addtohome {
      background-color: #0d47a1;
      border: none;
      padding: 8px 0;
      width: 120px;
      border-radius: 4px;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: white;
      text-align: center;
    }
    
    /* Responsif untuk layar kecil */
    @media (max-width: 576px) {
      .toast {
        max-width: 90%;
      }
    }

    /* Modifikasi tampilan utama dengan background putih */
    .radial-gradient {
      background: #ffffff !important; /* Mengubah background menjadi putih */
      background-image: none !important; /* Menghapus background image jika ada */
    }

    .bg-body {
      background-color: #ffffff !important;
    }