/* File: assets/css/frontend.css */
.spm-specials-table {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  max-width: 900px;
  margin: 0 auto 40px;
}
.spm-table-title {
  color: #1a6b9a;
  margin-bottom: 15px;
  font-size: 2em;
  text-align: center;
  font-weight: 600;
}
.spm-package-name {
  color: #fff;
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f7ff;
}
.spm-specials {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: #12121275;
}
.spm-specials tbody tr {
  border-bottom: 1px solid #eaeaea;
  transition: background-color 0.2s ease;
}
.spm-specials tbody tr:last-child {
  border-bottom: none;
}
.spm-specials tbody tr:hover {
  background-color: #00000075;
}
.spm-specials tbody tr.spm-inactive {
  opacity: 0.5;
}
.spm-specials td {
  padding: 20px;
  vertical-align: top;
}
td {
  border: 1px solid #535353 !important;
}
/* Special info column (title + subtitle) */
.spm-special-info {
  width: 70%;
}
.spm-special-title {
  font-weight: 600;
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 5px;
}
.spm-special-subtitle {
  color: #666;
  font-size: 0.95em;
  line-height: 1.4;
  font-style: italic;
}
/* Price column */
.spm-special-price {
  font-weight: 700;
  font-size: 1.4em;
  color: #fff;
  text-align: right;
  width: 30%;
  white-space: nowrap;
  vertical-align: middle;
}
.spm-error, .spm-info {
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
}
.spm-error {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 5px solid #dc3545;
}
.spm-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border-left: 5px solid #17a2b8;
}
/* Admin preview in specials list */
.spm-admin .spm-special-title {
  font-weight: 600;
  font-size: 16px;
  color: #23282d;
  margin-bottom: 4px;
}
.spm-admin .spm-special-subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 4px;
  font-style: italic;
}
@media (max-width: 768px) {
  .spm-specials-table {
    padding: 10px;
  }
  .spm-table-title {
    font-size: 1.6em;
  }
  .spm-package-name {
    font-size: 1.3em;
  }
  .spm-specials {
    /*display: block;*/
    overflow-x: auto;
  }
  .spm-specials td {
    padding: 15px 12px;
    font-size: 14px;
  }
  .spm-special-price {
    font-size: 1.2em;
  }
}
@media (max-width: 480px) {
	
	table {
		border-left: none !important;
	}
  .spm-specials {
    /*display: block;*/
  }
  .spm-specials tbody tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
  }
  .spm-specials td {
    /*display: block;*/
    padding: 8px;
    text-align: left;
    width: 100% !important;
  }
  .spm-special-title {
    font-size: 1.2em;
    margin-bottom: 5px;
  }
  .spm-special-subtitle {
    font-size: 0.9em;
    margin-bottom: 10px;
  }
  .spm-special-price {
    font-size: 1.3em;
    text-align: left;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
  }
  .spm-special-price::before {
    content: "Price: ";
    font-weight: normal;
    color: #fff;
    font-size: 0.9em;
  }
}