@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --logo-color: #1e40af;
  --button-bg: #2b2b2b;
  --primary-color: #2b2b2b;
  --accent-color: #1e40af;
  --accent-hover-color: #153061;
}

body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Inter", "sans-serif";
  margin: auto;
}

.container {
  max-width: 1360px;
  margin-inline: auto;
}

.no-scroll {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  width: 300px;
  max-width: 90%;
  z-index: 1000;
  box-sizing: border-box;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
  display: none;
}

.btn {
  padding: 11px 52px;
  background-color: var(--button-bg);
  color: white;
  font-weight: 400;
  cursor: pointer;
  border: 2px solid #3a3a3a;
}

.btnSecondary {
  padding: 11px 52px;
  background-color: transparent;
  color: black;
  font-weight: 400;
  cursor: pointer;
  border: 2px solid #3a3a3a;
}

.btnAccent {
  padding: 11px 62px;
  background-color: var(--accent-color);
  color: white;
  font-weight: 400;
  cursor: pointer;
  border: 2px solid #3a3a3a;
}

.btnDelete {
  padding: 11px 52px;
  background-color: #e53935;
  color: white;
  font-weight: 400;
  cursor: pointer;
  border: 2px solid #8e0000 !important;
}

.btnDelete:hover {
  background-color: #c62828;
  border-color: #c62828;
}

.btnSubmit {
  padding: 14px 52px;
  background-color: #2b2b2b;
  color: white;
  font-weight: 400;
  cursor: pointer;
  border: 2px solid #3a3a3a;
}

.btn:hover {
  background-color: transparent;
  color: black;
}

.btnSecondary:hover {
  background-color: var(--button-bg);
  color: white;
}

.btnAccent:hover {
  background-color: var(--accent-hover-color);
  color: white;
  border-color: var(--accent-hover-color);
}

.divider {
  max-width: 100%;
  width: 100%;
  height: 1px;
  background-color: #e5e7eb;
  margin-top: 40px;
}

.title {
  font-size: 42px;
  font-weight: 500;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
}

.logo-text {
  color: var(--logo-color);
  font-size: 32px;
  font-family: "Inter", "sans-serif";
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.navbar .right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-link {
  margin-right: 8px;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  margin: 10rem auto;
}

.hero-subheading {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.hero-title {
  font-size: 42px;
  font-weight: 500;
  margin: 18px 0;
}

.hero-description {
  font-weight: 200;
  font-size: 18px;
  margin: 0;
  margin-top: 20px;
}

.hero-btn {
  margin-top: 100px;
  padding: 14px 52px;
}

.box {
  border: 2px solid black;
  width: 400px;
  height: 400px;
}

.box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 32px;
  padding: 8px 30px;
  cursor: pointer;
}

.play-button:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Features Section */
.features {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  max-width: 1240px;
  margin: auto;
}

.features-title {
  text-align: center;
  margin: 0;
  margin-top: 26px;
}

.features-description {
  margin-top: 24px;
  text-align: center;
  font-weight: 200;
  font-size: 16px;
}

/* Single Feature */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 4rem;
}

.feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 18rem;
  width: 20rem;
  padding: 0.5rem;
  border: 1px solid lightgray;
}

.feature-icon img{
  width: 75px;
}

.feature-title h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  margin-top: 12px;
}

.feature-description {
  font-size: 16px;
  font-weight: 200;
}

/* Login Page */

body.login main {
  margin-top: 50px;
}

.login-container {
  display: flex;
  justify-content: space-between;
  margin: auto;
  border: 1px solid lightgray;
  width: 1000px;
  height: 700px;
}

.login-container > .left,
.login-container > .right {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.login-container .right form {
  display: flex;
  justify-content: center;
  margin: auto;
  flex-direction: column;
  gap: 1rem;
}

.login-title {
  font-size: 38px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 20px;
}

.login input {
  padding: 13px;
  outline: none;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login input:focus {
  outline: none;
}

.login .checkbox-label {
  font-weight: 300;
}

.login .email-label {
  margin-bottom: -5px;
}

.login-container .left {
  padding: 15px;
}

.login-container .left .cont {
  background-color: var(--accent-color);
  width: 100%;
  height: 100%;
}

.btn-login,
.btn-register {
  margin-top: 20px;
}

.login-container .left .login-title {
  color: white;
  line-height: 1.5;
  margin-left: 40px;
  margin-top: 30px;
  font-weight: 500;
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -25px;
}

.dont-have-account {
  display: flex;
  margin: 0 0 1rem 0;
  justify-content: flex-end;
  font-size: 15px;
  font-weight: 300;
}

.dont-have-account span {
  font-weight: 300;
  cursor: pointer;
}

.forgot-password {
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
}

.forgot-password-text {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}

.success-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.success-container h2 {
  margin-bottom: 20px;
}

.success-container p {
  margin-bottom: 15px;
  max-width: 400px;
}

.success-container button {
  margin: 20px 0;
}

#forgotPasswordError,
#resetPasswordError {
  color: #dc3545;
  font-size: 14px;
  margin-top: 10px;
  display: none;
}

#upload-files-modal {
  display: none;
  width: 900px;
  min-width: 900px;
  border: 2px solid lightgray;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.upload-files-modal .title {
  margin-top: 20px;
  margin-bottom: 10px;
}

.upload-files-modal .description {
  font-weight: 200;
  margin-bottom: 20px;
}

.upload-files-modal .container {
  width: 100%;
  box-sizing: border-box;
}

.upload-limit-info {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.upload-limit-info #uploadFileCounter {
  color: #1e40af;
  font-weight: 600;
}

.upload-limit-info #uploadMaxFiles {
  color: #374151;
  font-weight: 600;
}

.upload-limit-info.warning #uploadFileCounter {
  color: #f59e0b;
}

.upload-limit-info.limit-reached #uploadFileCounter {
  color: #dc2626;
}

.upload-box {
  padding: 20px;
  box-sizing: border-box;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='6%2c 15' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  text-align: center;
  cursor: pointer;
  height: 250px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.upload-box.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23ccc' stroke-width='2' stroke-dasharray='6%2c 15' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.upload-box .icon {
  margin-top: 30px;
  font-size: 26px;
}

.upload-box .title {
  font-size: 22px;
  margin-top: 50px;
}

#dropText {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 100px;
}

#uploadFileError {
  display: none;
  color: red;
  margin-top: 15px;
  padding: 10px;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 4px;
  font-size: 14px;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

#loginError,
#registerError {
  color: red;
  font-size: 14px;
  margin: 0;
}

#profileLink {
  cursor: pointer;
}

#logoutBtn {
  cursor: pointer;
}

#logoutBtn button {
  background-color: var(--button-bg);
  color: white;
  border: 2px solid #3a3a3a;
  padding: 11px 52px;
  font-weight: 400;
  cursor: pointer;
}

#logoutBtn button:hover {
  background-color: transparent;
  color: black;
}

#loginForm,
#registerForm {
  width: 80% !important;
}

/* File metadata modal */

.upload-files-modal-meta {
  display: none;
  justify-content: center;
  align-items: center;
  font-weight: 300;
}

.upload-files-modal-meta .container {
  border: 2px solid lightgray;
  width: 1000px;
  max-height: 80vh;
  flex-shrink: 0;
  background-color: white;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.upload-files-modal-final {
  display: none;
  justify-content: center;
  align-items: center;
  font-weight: 300;
}

.upload-files-modal-final .container {
  border: 1px solid lightgray;
  width: 800px;
  max-height: 80vh;
  flex-shrink: 0;
  background-color: white;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.order-container {
  border: 1px solid lightgray;
  padding: 10px;
}

.order-form {
  flex: 1;
  padding: 20px 50px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.upload-files-modal-final .container h2 {
  font-size: 36px;
  font-weight: 700;
}

.upload-files-modal-final .container h3 {
  font-size: 26px;
  font-weight: 500;
  margin: 10px 0;
  margin-bottom: 30px;
}

.file-container {
  border: 2px solid lightgray;
  margin: 6px 30px;
  padding: 6px 0;
  box-sizing: border-box;
}



#fileCardsContainer {
  flex: 1;
  overflow-y: auto;
  max-height: calc(80vh - 180px);
  padding: 10px 0;
}

/* Custom scrollbar styling */
#fileCardsContainer::-webkit-scrollbar {
  width: 8px;
}

#fileCardsContainer::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

#fileCardsContainer::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

#fileCardsContainer::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.meta-subcontainer {
  margin: 0 6px;
}

.name-checkbox {
  margin-top: -6px;
  display: flex;
  justify-content: space-between;
}

.file-name {
  font-size: 16px;
  font-weight: 600;
}

.support-part-text {
  font-weight: 200;
  font-size: 16px;
}

.quantity {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.quantity-input {
  display: flex;
  border: 1px solid #bdbdbd;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  height: 32px;
}

.quantity-input button {
  width: 32px;
  height: 32px;
  background: #fff;
  border: none;
  border-right: 1px solid #bdbdbd;
  border-radius: 0;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
  font-weight: 400;
}

.quantity-input button:last-child {
  border-right: none;
  border-left: 1px solid #bdbdbd;
}

.quantity-input input {
  width: 32px;
  height: 32px;
  border: none;
  text-align: center;
  font-size: 1rem;
  outline: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

.quantity-text {
  font-weight: 400;
  color: #757575;
  margin-right: 16px;
  font-size: 1rem;
}

.buttons {
  margin: 20px 30px;
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  background: white;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}

.buttons div button {
  margin-left: 10px;
}

.add-more-files-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-more-files-btn span {
  display: flex;
  align-items: center;
}

.add-more-files-btn:hover span img {
  filter: brightness(0) invert(1);
}

.quantity-input input[type="number"]::-webkit-inner-spin-button,
.quantity-input input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.inputs {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 6px;
  margin-top: 6px;
}

.inputs select {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  background-color: white;
  cursor: pointer;
}

[id^="notes"] {
  padding: 6px;
  font-size: 14px;
  border: 1px solid #ccc;
  outline: none;
  background-color: white;
  width: 80%;
  margin-top: 6px;
  font-weight: 300;
  resize: none;
}

.inputs select:focus {
  border-color: #1e40af;
  outline: none;
}

.inputs select:active {
  outline: none;
}

.remove-file {
  display: flex;
  justify-content: flex-end;
  margin-bottom: -5px;
}
.remove-file span {
  cursor: pointer;
}

.checkbox-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.supporting-part-selector {
  margin-top: 12px;
  padding: 12px;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
}

.supporting-part-selector label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #495057;
  margin-bottom: 8px;
}

.supporting-part-selector select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
}

.supporting-part-selector select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.1);
}



.support-indicator {
  margin-top: 8px;
  padding: 8px 12px;
  background-color: #e3f2fd;
  border: 1px solid #90caf9;
  border-radius: 4px;
}

.support-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #1976d2;
}

.support-icon {
  font-size: 14px;
}

.support-text {
  font-weight: 500;
}

/* Drag and Drop Styles */
.file-container {
  cursor: grab;
  transition: all 0.2s ease;
}

.file-container.dragging {
  opacity: 0.5;
  cursor: grabbing;
  transform: scale(1.02);
}

.file-container:not(.supporting-file) {
  transition: all 0.2s ease;
}

.file-container:not(.supporting-file).drag-over {
  background-color: #e3f2fd;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  transform: scale(1.01);
}

.supporting-file {
  margin-left: 24px;
  margin-top: 4px;
}

.full-width {
  width: 100%;
  margin-top: 20px;
}

.files .title {
  font-weight: 500;
  font-size: 34px;
  margin-left: 45px;
}

.file {
  border: 1px solid lightgray;
  margin-top: 100px;
  padding: 10px;
}

.row {
  display: flex;
  flex-direction: row;
}

.order-name {
  margin: 0;
  font-weight: 500;
}

.row p:first-child {
  min-width: 140px;
  font-weight: 500;
  margin: 0;
  padding-right: 12px;
}

.row p:last-child {
  margin: 0;
}

.row p {
  font-weight: 400;
  text-align: right;
}

.row {
  margin-bottom: 6px;
}

.order-value {
  color: gray;
}

.order-file-name {
  margin-top: 10px;
}

.order-card {
  margin: 0;
  margin-bottom: 20px;
}

.upload-box input[type="checkbox"] {
  -webkit-appearance: initial;
  appearance: initial;
  background: #fff;
  width: 32px;
  height: 32px;
  border: 1px solid #555;
  position: relative;
  vertical-align: middle;
  margin-right: 10px;
  cursor: pointer;
  display: inline-block;
}
.upload-box input[type="checkbox"]:checked {
  background: #fff;
}
.upload-boxinput[type="checkbox"]:checked:after {
  content: "X";
  color: #222;
  font-size: 26px;
  font-weight: 100;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
}


.supporting-files {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}

.supporting-files h4 {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: 600;
  color: #374151;
}

.supporting-file-item {
  margin-left: 20px;
  margin-bottom: 15px;
  padding: 15px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}

.supporting-file-item:last-child {
  margin-bottom: 0;
}

.supporting-file-item .row {
  margin-bottom: 8px;
}

.supporting-file-item .row:last-child {
  margin-bottom: 0;
}

.left {
  height: 100%;
}

.cont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.cont div img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 330px;
  margin-bottom: 20%;
}

/* Admin Page Styles */
#admin {
  padding: 0;
  min-height: 100vh;
}

#admin h1 {
  text-align: center;
  margin: 40px 0;
  font-size: 42px;
  font-weight: 500;
}

.admin-content {
  background: white;
  padding: 30px;
  border: 1px solid #e5e7eb;
}

.admin-content h2 {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 500;
}

/* Admin Filters */
.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.filter-group label {
  font-weight: 500;
  font-size: 14px;
  color: #374151;
}

.filter-select,
.filter-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  background: white;
  color: #374151;
}

.filter-select:focus,
.filter-input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.filter-actions {
  display: flex;
  gap: 15px;
  align-items: end;
  margin-left: auto;
}

.sort-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-controls label {
  font-weight: 500;
  font-size: 14px;
  color: #374151;
  white-space: nowrap;
}

.sort-btn {
  padding: 11px 16px !important;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sort-btn:hover {
  background-color: var(--button-bg);
  color: white;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.filter-actions button {
  padding: 11px 24px;
  font-weight: 400;
  cursor: pointer;
  border: 2px solid #3a3a3a;
}

/* Responsive filters */
@media (max-width: 768px) {
  .admin-filters {
    flex-direction: column;
    gap: 15px;
  }
  
  .filter-actions {
    margin-left: 0;
    justify-content: flex-end;
  }
  
  .filter-group {
    min-width: auto;
  }
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-pending {
  background-color: #fef3c7;
  color: #92400e;
  border: 1px solid #f59e0b;
}

.status-in-process {
  background-color: #dbeafe;
  color: #1e40af;
  border: 1px solid #3b82f6;
}

.status-delivered {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.status-canceled {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

/* Edit Modal Styles */
.edit-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.edit-modal.show {
  display: flex;
}

.edit-modal-content {
  background: white;
  border-radius: 8px;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.edit-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
}

.edit-modal-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
}

.close-edit-modal {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-edit-modal:hover {
  color: #333;
}

.edit-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.edit-form-grid .form-group:nth-child(5),
.edit-form-grid .form-group:nth-child(6) {
  grid-column: 1 / -1;
}

/* Edit modal form inputs - match website style */
.edit-form-grid .form-group input,
.edit-form-grid .form-group select,
.edit-form-grid .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  background: white;
  color: #374151;
}

.edit-form-grid .form-group input:focus,
.edit-form-grid .form-group select:focus,
.edit-form-grid .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.edit-form-grid .form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.edit-form-buttons {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.edit-form-buttons button {
  padding: 11px 52px;
  font-weight: 400;
  cursor: pointer;
  border: 2px solid #3a3a3a;
}

.cancel-edit {
  background-color: transparent;
  color: black;
}

.cancel-edit:hover {
  background-color: var(--button-bg);
  color: white;
}

.save-edit {
  background-color: var(--accent-color);
  color: white;
}

.save-edit:hover {
  background-color: var(--accent-hover-color);
  border-color: var(--accent-hover-color);
}

/* Admin order card edit button */
.admin-order-card {
  position: relative;
  border: 1px solid #e5e7eb;
  padding: 20px;
  margin-bottom: 15px;
  background: white;
}

.admin-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
}

.edit-order-btn,
.download-order-btn {
  background: var(--accent-color);
  color: white;
  border: 2px solid var(--accent-color);
  padding: 11px 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

.edit-order-btn:hover,
.download-order-btn:hover {
  background: var(--accent-hover-color);
  border-color: var(--accent-hover-color);
  color: white;
}

/* Responsive edit modal */
@media (max-width: 768px) {
  .edit-form-grid {
    grid-template-columns: 1fr;
  }
  
  .edit-modal-content {
    width: 95%;
    padding: 20px;
  }
  
  .edit-form-buttons {
    flex-direction: column;
  }
  
  .edit-form-buttons button {
    width: 100%;
  }
}