@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("css/dashboard.css");

:root {
  --background-blue: #e6f0f7;
  --accent-blue: #1e90ff;
  --ink: #1a1f25;
  --glass: rgba(255, 255, 255, 0.45);
  --glass-hover: rgba(90, 124, 226, 0.12);
  --font-family: font-family: "Roboto", "Trebuchet MS", sans-serif;
  --font-weight: 400;
  --font-style: normal;
}

.logo h2 {
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: 600;
  color: #072c47;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.323);
}

/* Dashboard Table Styles */
.card {
  /*padding: 20px 0;*/
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

i {
  color: #072c47;
  margin: 0 3px;
}

table {
  color: #084565;
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  padding: 5px 10px;
  border-radius: 10px;
  background: rgba(97, 181, 234, 0.052);
}

th {
  background: #f0f0f0;
}
.status-active {
  color: green;
  font-weight: bold;
}
.status-canceled {
  color: red;
  font-weight: bold;
}
.status-inactive {
  color: #555;
  font-weight: bold;
}

.card .link {
  width: auto;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #094a6f;
  padding: 7px 15px;
  margin: 10px 10px 5px 10px;
  background: #bbd2e8;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  border-left: 4px solid rgb(14, 124, 179);
  border-bottom: 2px solid rgb(8, 64, 81);
  transition: all 0.1s ease-in-out;
}

.card .link:hover {
  color: whitesmoke;
  background: #085a84;
  border-left: 4px solid rgb(13, 153, 29);
}

table a {
  width: auto;
  display: inline-block;
  font-size: 14px;
  color: #0b4e6f;
  padding: 2px 10px;
  background: #d2deea;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  border-bottom: 2px solid rgb(28, 124, 153);
  transition: all 0.1s ease-in-out;
}

table a:hover {
  color: whitesmoke;
  background: #085a84;
}

form p {
  margin: 10px 0;
}

button {
  padding: 8px 14px;
  border-radius: 10px;
  border: none;
  border-bottom: 1px solid #06425f;
  background: var(--accent-blue);
  color: white;
  margin: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #0d86c8;
}

.msg {
  padding: 10px;
  margin-bottom: 15px;
}
.success {
  background: #e5ffe5;
  color: #060;
}
.error {
  background: #ffe5e5;
  color: #900;
}
