  body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #f0f0f0;
        margin: 0;
        padding: 0;
  }
    
    @keyframes parallaxEffect {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 100% 100%;
        }
    }
    
    body {
        animation: parallaxEffect 10s infinite;
    }

    /* Style untuk form */
    #delete-button {
        background-color: #ff0000;
        color: #ffffff;
        border: none;
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
      }
      
      #delete-button:hover {
        background-color: #cc0000;
      }
#config-form {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Style untuk inputan */
  input {
    margin-bottom: 10px;
    padding: 5px;
    width: 80%;
    max-width: 300px;
  }
  
  /* Style untuk tombol */
  button {
    width: 200px;
    padding: 8px 16px;
    margin-bottom: 10px;
    background-color: #0088cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #006699;
  }
  
  /* Style untuk notifikasi */
  .notification {
    display: none;
    padding: 10px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
  }
  
  .notification.show {
    display: block;
  }
  
  .notification.success {
    background-color: #00cc66;
  }
  
  .notification.error {
    background-color: #ff0000;
  }
  
  /* Media query untuk responsif */
  @media (max-width: 768px) {
    input {
      max-width: 100%;
    }
  }
  

    .container {
        text-align: center;
        padding: 40px;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        max-width: 400px;
        margin: 100px auto;
    }

    h1 {
        padding-top: 100px;
        margin: 0;
        font-size: 36px;
        color: #333333;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 24px;
        color: #666666;
    }

    #suhu,
    #kelembapan {
        font-size: 48px;
        color: #0088cc;
    }

    .btn-toggle {
        display: inline-block;
        padding: 12px 24px;
        font-size: 20px;
        background-color:#f44336 ;
        color: #ffffff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .btn-toggle:hover {
        background-color:  #d32f2f;
    }

    .btn-toggle.off {
        background-color:#4CAF50!important;
    }

    .btn-toggle.off:hover {
        background-color: #45a049 !important;
    }

    /* CSS untuk elemen grafik */
    #chart {
        position: relative;
        margin: 0 auto;
        width: 300px;
        height: 300px;
    }

    /* CSS untuk animasi */
    @keyframes chartAnimation {
        0% {
            transform: scale(0);
        }
        100% {
            transform: scale(1);
        }
    }

    /* CSS untuk animasi masuk */
    .chart-enter {
        animation: chartAnimation 0.5s forwards;
    }

    #chart:hover {
        transform: scale(1.1);
    }

    /* Notifikasi Styles */
    .notification {
        position: fixed;
        top: 10px;
        right: 10px;
        padding: 10px 20px;
        background-color: #0088cc;
        color: #ffffff;
        border-radius: 4px;
        font-size: 16px;
        display: none;
        z-index: 9999;
    }

    .notification.show {
        display: block;
    }

    .notification.success {
        background-color: #4CAF50;
    }

    .notification.error {
        background-color: #f44336;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
        }
    }

    .btn-toggle:hover,
    .btn-toggle.off:hover {
        animation: pulse 1s infinite;
    }

    /* Responsif */
    @media screen and (max-width: 600px) {
        .container {
            padding: 20px;
            max-width: 300px;
        }

        h1 {
            font-size: 24px;
        }

        h2 {
            font-size: 18px;
        }

        #suhu,
        #kelembapan {
            font-size: 36px;
        }

        .btn-toggle {
            padding: 8px 16px;
            font-size: 16px;
        }
    }

    /* Footer */
    .footer {
        margin-top: 40px;
        padding: 10px;
        background-color: #333333;
        color: #ffffff;
        text-align: center;
    }

    .footer a {
        color: #ffffff;
        text-decoration: none;
    }

    .footer a:hover {
        color: #f44336;
        animation: pulse 1s infinite;
    }

    h3 {
        font-size: 30px;
        margin-bottom: 10px;
        color: #333333;
        text-align: center;
    }

    .chat-container {
        margin-top: 40px;
    }

    .chat-messages {
        max-height: 200px;
        overflow-y: auto;
        padding: 10px;
        background-color: #f5f5f5;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .chat-message {
        padding: 5px;
        border-radius: 4px;
        margin-bottom: 5px;
        background-color: #ffffff;
    }

    .chat-timestamp {
        font-size: 12px;
        color: #999999;
    }

    .chat-form {
        display: flex;
        align-items: center;
    }

    .chat-input {
        flex: 1;
        padding: 8px;
        border-radius: 4px 0 0 4px;
        border: 1px solid #cccccc;
        outline: none;
    }

    .chat-send {
        padding: 8px 16px;
        background-color: #0088cc;
        color: #ffffff;
        border: none;
        border-radius: 0 4px 4px 0;
    }
    