/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
}

header {
  width: 100%;
  height: 120px;

  display: flex;
  justify-content: center;
  align-items: end;
}

nav {
  width: 98%;
  height: 90%;
  background: linear-gradient(to right, #7981de, #7550a9);
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

.left {
  width: fit-content;
  height: 90px;
  display: flex;
  flex-direction: column;
}

.left h2 {
  text-transform: capitalize;
  color: white;
  font-size: 30px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

#data {
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#data button {
  padding: 10px 30px;
  text-transform: capitalize;
  background: transparent;
  color: white;
  border: 1px solid white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 10px;
}

#logout {
  padding: 10px 30px;
  border-radius: 5px;
  border: none;
  text-transform: capitalize;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s ease;
  color: #7550a9;
  background: white;
}

#logout:hover {
  transform: scale(0.9);
}

main {
  width: 100%;
  height: calc(100% - 120px);
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 50px 0px;
}

#maindiv {
  width: 95%;
  height: auto;
  border-radius: 10px;
  background: #eae9f1;
  padding: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.card {
  width: 500px;
  height: 270px;
  background: white;
  border-radius: 20px;
}

.icons {
  width: 100%;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.icons button {
  padding: 12px 20px;
  border: none;
  text-transform: capitalize;
  border-radius: 5px;
  background: #7981de;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s ease;
}

.icons button:hover {
  opacity: 0.6;
}

.icons i {
  font-size: 50px;
  background: #7550a9;
  padding: 5px;
  color: white;
  border-radius: 10px;
}
.text {
  width: 100%;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0px 20px;
  justify-content: end;
}
.text span {
  text-transform: capitalize;
}

.timed {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 0px 10px;
  gap: 10px;
  min-height: 70px;
}

.timed span {
  background: #faf6fe;
  width: fit-content;
  border-radius: 5px;
  color: lightslategray;
  padding: 10px 7px;
}

.timed #loc {
  text-align: center;
  text-transform: capitalize;
  word-break: break-all;
}
#dt,
#tm {
  text-align: center;
}
.btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

a {
  text-transform: capitalize;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.loginn {
  background: white;
  padding: 12px 30px;
  border-radius: 5px;
  color: #7550a9;
  transition: 0.4s ease;
}

.loginn:hover {
  opacity: 0.8;
}
.logdes {
  pointer-events: none;
  opacity: 0.2;
}

.logoudes {
  pointer-events: none;
  opacity: 0.1;
}

.dust {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  font-weight: bold;
  color: #7550a9;
  font-size: 15px;
  pointer-events: none;
  opacity: 0.1;
}

.shdust {
  opacity: 1;
  pointer-events: all;
}

.dust:hover {
  opacity: 0.8;
  cursor: pointer;
} */





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  background: #eae9f1;
}

/* ================= HEADER =================== */

header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

nav {
  width: 98%;
  background: linear-gradient(to right, #7981de, #7550a9);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.left h2 {
  color: white;
  font-size: 30px;
  text-transform: capitalize;
}

#data {
  margin-top: 5px;
  display: flex;
  gap: 10px;
}

#data button {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
}

/* NAV BUTTONS */
.btns {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.loginn {
  background: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  color: #7550a9;
  font-weight: bold;
}

.logdes {
  pointer-events: none;
  opacity: 0.3;
}

.logou {
  background: #fff;
  color: #7550a9;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  font-weight: bold;
}

.logoudes {
  pointer-events: none;
  opacity: 0.3;
}

.dust {
  border: none;
  padding: 10px 20px;
  background: #fff;
  color: #7550a9;
  border-radius: 5px;
  font-weight: bold;
  opacity: 0.3;
}

.shdust {
  opacity: 1;
  pointer-events: all;
}

a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

/* ================= MAIN AREA =================== */

main {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

#maindiv {
  width: 95%;
  padding: 20px;
  background: #eae9f1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* ================= CARD STYLE =================== */

.card {
  width: 500px;
  min-height: 260px;
  background: white;
  border-radius: 18px;
  padding-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.icons {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
}

.icons button {
  padding: 10px 16px;
  background: #7981de;
  border-radius: 8px;
  color:white;
  border:none;
  cursor:pointer;
}

.icons i {
  font-size: 50px;
  background: #7550a9;
  color:#fff;
  padding: 5px;
  border-radius: 10px;
}

.text {
  padding: 10px 20px;
}

.text h2 {
  color:#7550a9;
  margin-bottom: 8px;
}

.text span {
  text-transform: capitalize;
  font-size: 16px;
}

.timed {
  padding: 0px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.timed span {
  padding: 10px 12px;
  background:#faf6fe;
  color:#666;
  font-size: 14px;
  border-radius: 5px;
  width: fit-content;
}

/* =================== RESPONSIVE BREAKPOINTS ====================== */

/* -------- 1200px -------- */
@media (max-width: 1200px) {
  .card {
    width: 48%;
  }
}

/* -------- 900px Tablets -------- */
@media (max-width: 900px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .left h2 {
    font-size: 26px;
  }

  #data button {
    padding: 7px 15px;
  }

  .card {
    width: 100%;
  }
}

/* -------- 600px Large Mobile -------- */
@media (max-width: 600px) {
  nav {
    padding: 12px 15px;
  }

  .btns {
    width: 100%;
    justify-content: center;
  }

  .left {
    width: 100%;
  }

  .icons i {
    font-size: 40px;
  }

  .timed span {
    width: 100%;
    text-align: center;
  }
}

/* -------- 480px Small Mobile -------- */
@media (max-width: 480px) {
  .left h2 {
    font-size: 22px;
  }

  #data {
    flex-direction: column;
    width: 100%;
  }

  #data button {
    width: 100%;
    text-align: center;
  }

  #logout,
  .loginn,
  .dust {
    width: 100%;
    text-align: center;
  }

  .btns {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .card {
    width: 100%;
  }

  .text h2 {
    font-size: 18px;
  }
}

/* -------- 360px Very Small Screens -------- */
@media (max-width: 360px) {
  .icons i {
    font-size: 34px;
  }

  .text span {
    font-size: 14px;
  }

  .timed span {
    font-size: 12px;
  }
}
