/* General body styles */

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6, h7 {
  font-family: "Teko", sans-serif;
}

body {
  font-family: "Teko", sans-serif;
  background: #000;
  color: #fff;
  padding: 20px;
  margin: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Main container styles */

.container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h3 {
  margin-top: 10px;
  font-size: 1.1em;
  font-weight: bold;
}

h5 {
  font-size: 1em;
  margin: 10px 0;
  color: grey;
}

h1 {
  text-align: center;
  color: #fff;
}

/* Table styles */

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 5px;
}

th, td {
  border: 1px solid #444;
  padding: 8px;
  color: #fff;
  text-align: center; /* Center align text in th and td */
}

th {
  background-color: black;
}

/* Form input styles */

input[type="text"], input[type="email"], textarea {
  width: calc(100% - 22px);
  padding: 10px;
  margin-bottom: 5px;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #333;
  color: #fff;
  box-sizing: border-box;
}

input[type="file"] {
  margin-bottom: 5px;
  
}

/* Button styles */

button {
  background-color: #28a745;
  color: white;
  padding: 10px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-sizing: border-box;
  width: 40%; /* Ensure button takes 40% width */
  font-family: "Teko", sans-serif;
  font-size: 20px;
}

button:disabled { /* Styles applied to the button when disabled */
  background-color: grey;
  cursor: not-allowed; /* Change cursor to indicate disabled state */
}

button:hover {
  background-color: #218838;
}

/* Recipient section styles */

.recipient-section {
  margin-bottom: 5px;
}

.recipient-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #333;
  padding: 10px;
  border-radius: 2px;
  cursor: pointer;
}

.recipient-header {
  margin: 0;
  color: #fff;
}

.recipient-content {
  display: none;
  padding: 5px;
  background-color: #000000;
  border-radius: 2px;
}

/* Row count styles */

.row-count {
  font-size: 12px;
  margin-top: 5px;
  font-family: "Laila", sans-serif;
}

/* Feedback styles */

.valid-feedback {
  color: #28a745;
  font-family: "Teko", sans-serif;
}

.invalid-feedback {
  color: #dc3545;
  font-family: "Teko", sans-serif;
}

/* Keyframes animation */

@keyframes fall {
  from {
    transform: translateY(-1000px);
    opacity: 1;
  }
  to {
    transform: translateY(100vh);
    opacity: 0;
  }
}

/* Stars animation */
.stars {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  animation: fall linear infinite;
  opacity: 0.8;
}

/* Notification container styles */
#notification-container {
  position: fixed;
  top: 10px;
  right: 10px;
  display: none; /* Initially hidden */
  z-index: -1000;
  max-width: 250px;
  width: calc(100% - 20px);
}

#notification {
  background-color: #f0f0f0; /* Light grey background */
  color: #333;
  padding: 15px;
  border-radius: 10px; /* Sharp edges */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border: 1px solid #ccc;
  font-size: 7px; /* Base font size */
  font-family: "Kode Mono", sans-serif;
}

#notification p {
  margin: 0;
  padding-right: 20px;
  flex-grow: 1;
  font-size: 7px; /* Font size for the paragraph */
}

#notification b {
  font-size: 9px; /* Font size for the bold text */
}

#close-icon {
  cursor: pointer;
  color: #666;
  font-size: 20px; /* Font size for the close icon */
  margin-left: 10px;
  transition: color 0.3s ease;
}

#close-icon:hover {
  color: #000;
}

/* Form group styles */
.form-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.form-group input {
  width: 48%;
}
