/* leave-form.css */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #6e0e9ec5 20%, #793442be 80%);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#leave-form-container {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 400px;
  transition: all 0.3s ease;
}

table {
  width: 100%;
  margin-bottom: 20px;
}

td, th {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

label {
  font-weight: bold;
  margin-right: 10px;
  color: #333;
}

input[type="text"] {
  padding: 10px;
  width: calc(100% - 20px);
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus {
  border-color: #00f7ff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

button {
  padding: 12px 20px;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2em;
  width: 100%;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background: linear-gradient(135deg, #fad0c4 0%, #ffd1ff 100%);
  transform: scale(1.05);
}

button:active {
  transform: translateY(2px);
}

canvas {
  border: 4px solid black;
  border-radius: 20px;
  margin-top: 20px;
  display: block;
  width: 100%;
  transition: border-color 0.3s ease;
}

canvas:hover {
  border-color: #dd00ff;
}

a {
  display: block;
  padding: 12px 20px;
  background: linear-gradient(135deg, #ff6a6a 0%, #ff0000 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2em;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  text-align: center;
  margin-top: 20px;
}

a:hover {
  background: linear-gradient(135deg, #ff9a9e 0%, #ff6a6a 100%);
  transform: scale(1.05);
}

a:active {
  transform: translateY(2px);
}
      