@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  color: aliceblue;
}

:root {
  --color1: rgb(15, 15, 15);
  --color2: rgb(35, 45, 63);
  --color3: rgb(0, 91, 65);
  --color4: rgb(0, 129, 112);
  --color11: rgba(15, 15, 15, 0.5);
  --color22: rgba(35, 45, 65, 0.5);
  --color33: rgba(0, 91, 65, 0.5);
  --color44: rgba(0, 129, 112, 0.5);
}

html {
  font-size: 10px;
}

body {
  background-color: var(--color1);
}

.glow {
  font-size: 80px;
  color: #fff;
  text-align: center;
  animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}
header {
  width: 50%;
  height: 20vh;
  margin: auto;
  margin-top: 1rem;
  background-color: var(--color22);
  border-radius: 1rem 1rem 0 0;
  box-shadow: 0px -2px 8px 1px whitesmoke;
}
header #logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  margin: auto;
  padding-top: 5vh;
}
header #logo h1 {
  font-size: 4rem;
}

#app {
  width: 50%;
  height: 70vh;
  margin: auto;
  background-color: var(--color3);
  border-radius: 0rem 0rem 1rem 1rem;
  box-shadow: 0px 2px 8px 1px whitesmoke;
  /* Scrollbar thumb */
  /* Scrollbar corner (where vertical and horizontal scrollbars meet) */
  /* Overall scrollbar */
}
#app .app-form {
  width: 100%;
  height: 14%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: var(--color22);
}
#app .app-form form {
  width: 90%;
  display: flex;
  justify-content: space-between;
}
#app .app-form form textarea:focus,
#app .app-form form input:focus {
  outline: none;
}
#app .app-form form input {
  height: 2.5rem;
  border: none;
  background-color: transparent;
}
#app .app-form form input[type=text],
#app .app-form form input[type=datetime-local] {
  border-bottom: 0.1rem solid #fff;
}
#app .app-form form input[type=text] {
  width: 42%;
}
#app .app-form form input[type=datetime-local] {
  width: 28% !important;
}
#app .app-form form input[type=color] {
  width: 6%;
}
#app .app-form form input[type=button] {
  background-color: var(--color1);
  width: 15%;
  border-radius: 1rem;
  cursor: pointer;
}
#app .app-form form input:hover {
  transform: scale(110%);
}
#app .app-tabs {
  width: 100%;
  height: 86%;
  overflow: auto;
}
#app .app-tabs .tab {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  overflow: hidden;
}
#app .app-tabs .tab button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}
#app .app-tabs .tabcontent {
  width: 99%;
  margin: auto;
}
#app .app-tabs .tabcontent .tabContentList {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
  align-content: space-between;
}
#app .app-tabs .tabcontent .tabContentList .item {
  box-shadow: 0 0 2rem rgba(0, 123, 255, 0.8);
  width: 80%;
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
#app .app-tabs .tabcontent .tabContentList .item #Active {
  color: #17db38;
}
#app .app-tabs .tabcontent .tabContentList .item #deleteBtn {
  color: rgb(148, 18, 18);
}
#app .app-tabs::-webkit-scrollbar-track {
  background: rgba(216, 213, 213, 0);
}
#app .app-tabs::-webkit-scrollbar-thumb {
  background: #3ce065;
  border-radius: 20px;
  /* Example: rounded corners */
}
#app .app-tabs::-webkit-scrollbar-corner {
  background: #17db38;
}
#app .app-tabs::-webkit-scrollbar {
  width: 10px;
  /* Width of vertical scrollbar */
  height: 10px;
  /* Height of horizontal scrollbar */
}

/* 🌐 Responsive Layout */
@media screen and (max-width: 1024px) {
  header,
  #app {
    width: 80%;
  }
  .glow {
    font-size: 6rem;
  }
  .app-form form input[type=text],
  .app-form form input[type=datetime-local] {
    font-size: 1.4rem;
  }
  .item {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  header,
  #app {
    width: 95%;
  }
  #logo {
    flex-direction: column;
    gap: 1rem;
  }
  #logo img {
    width: 64px;
    height: auto;
  }
  .glow {
    font-size: 4rem;
  }
  .app-form form {
    flex-direction: column;
    gap: 1rem;
  }
  .app-form form input {
    width: 100% !important;
  }
  .tab {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 9px;
  }
  header,
  #app {
    width: 95%;
    height: auto;
    margin-top: 1rem;
    border-radius: 1rem;
  }
  #logo {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 2vh;
  }
  #logo img {
    width: 48px;
    height: auto;
  }
  .glow {
    font-size: 2.8rem;
    text-align: center;
  }
  .app-form {
    height: auto;
    padding: 1rem 0;
  }
  .app-form form {
    flex-direction: column;
    gap: 1rem;
    width: 90%;
    margin: auto;
  }
  .app-form form input {
    width: 100% !important;
    font-size: 1.4rem;
    padding: 0.5rem;
  }
  .app-form form input[type=button] {
    background-color: var(--color4);
    color: white;
    font-weight: bold;
  }
  .tab {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    padding: 1rem 0;
  }
  .tab button {
    width: 90%;
    font-size: 1.4rem;
    padding: 0.8rem;
    border-radius: 0.5rem;
    background-color: var(--color2);
    color: white;
  }
  .tabcontent {
    width: 100%;
    padding: 1rem;
  }
  .tabContentList .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1.4rem;
    padding: 1rem;
    width: 100%;
  }
  .tabContentList .item div {
    width: 100%;
  }
  #deleteBtn,
  #statusIcon {
    font-size: 1.6rem;
    align-self: flex-end;
  }
}/*# sourceMappingURL=style.css.map */