
body {
  background-color: whitesmoke !important;
}

.node-form {
    background: #fef9f6;
    border: 2px solid #713E5A;
    border-radius: 10px;
    padding: 20px;
    max-width: 500px;
    margin: 20px auto;
    font-family: "Georgia", serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.node-form label {
    font-weight: bold;
    margin-top: 15px;
    display: block;
}

.node-form input[type="text"],
.node-form input[type="date"],
.node-form input[type="time"] {
    width: 90%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.node-form input[type="submit"] {
    margin-top: 20px;
    background-color: #713E5A;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.node-form input[type="submit"]:hover {
    background-color: #5a3247;
}
/* Spinner animation for North Node loader */
.lds-dual-ring {
    display: inline-block;
    width: 64px;
    height: 64px;
  }
  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px auto;
    border-radius: 50%;
    border: 6px solid #4a90e2;
    border-color: #4a90e2 transparent #4a90e2 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }
  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
