/* Global Styles */
body {
  background: linear-gradient(135deg, #74ebd5, #ACB6E5);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Container customization */
.container {
  margin-top: 2rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Header styling */
h3.display-6 {
  color: #333;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Form Elements */
.form-label {
  font-weight: 500;
  color: #555;
}

.form-control {
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Button Styling */
.btn-primary, .btn-info, .btn-secondary {
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-info:hover {
  background-color: #17a2b8;
}

.btn-secondary:hover {
  background-color: #6c757d;
}

/* Table Styling */
.table {
  margin-top: 2rem;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.table th, .table td {
  vertical-align: middle;
  text-align: center;
}

.table th {
  background-color: #007bff;
  color: #fff;
}

/* Input Group for Copy Buttons */
.input-group {
  margin-bottom: 0;
}

.input-group .form-control {
  border-right: 0;
}

.input-group .btn-outline-secondary {
  border-left: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* Modal Styling */
.modal-content {
  border-radius: 10px;
}

.modal-header {
  background-color: #007bff;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.modal-title {
  font-weight: bold;
}
