:root {
  --template-color-0: #bcca00 !important;
  --template-color-1: #c6d401 !important;
}

body {
        font-family: "Arial", sans-serif;
        background-color: #f4f4f4;
        color: #333;
      }
      .container {
        max-width: 800px;
        margin: 50px auto;
        background: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
      h1 {
        text-align: center;
        margin-bottom: 30px;
      }
      form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
      }
      label {
        margin-bottom: 5px;
      }
      input[type="text"],
      textarea {
        width: 100%;
        padding: 12px 20px;
        border: 1px solid #ddd;
        border-radius: 4px;
        outline: none;
        transition: border-color 0.3s ease;
      }
      button {
        padding: 10px 20px;
        background-color: var(--template-color-0);
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }
      button:hover {
        background-color: var(--template-color-1);
      }
      .form-control:focus {
  border: 1px solid #333 !important;
  outline: none !important;
}
      .edit-btn,
      .delete-btn {
        margin-left: 10px;
        border: none;
        color: white;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }

      @media (min-width: 100px) and (max-width: 996px) {
  #loginBtn {
    width: 100%;
  }

  #settingsBtn {
    width: 100%;
  }
}
