  /* Dashboard CSS */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9fafb;
  color: #111827;
}
#location-list{
  display:none;
}
/* #location-add{
  display:none;
} */

.pfcm-admin-container {
  display: flex;
  min-height: 100vh;
}

.pfcm-sidebar {
  width: 260px;
  background: #1f2937;
  color: #fff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pfcm-logo {
  font-size: 24px;
  font-weight: bold;
  color: #75e197;
  text-align: center;
}

.pfcm-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pfcm-sidebar ul li a {
  display: block;
  padding: 12px 20px;
  color: #cbd5e1;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
  font-size: 16px;
}

.pfcm-sidebar ul li a:hover,
.pfcm-sidebar ul li a.active {
  background: #75e197;
  color: #fff;
}

.pfcm-main-content {
  flex: 1;
  padding: 40px;
  background: #f3f4f6;
}

.pfcm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}


.pfcm-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.pfcm-stat-box {
  background: linear-gradient(to left, #1f2937, #75e197);
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pfcm-stat-box:hover {
  transform: translateY(-4px);
}

.pfcm-icon {
  font-size: 26px;
  margin-bottom: 10px;
  color: #fff;
}

.pfcm-stat-box h3 {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 600;
}

.pfcm-stat-box p {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

form label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 8px;
  margin-top: 8px;
  font-size: 15px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
}

form button {
  margin-top: 25px;
  padding: 14px 24px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #1e40af;
}

.pfcm-rates-table table {
  width: 100%;
  border-collapse: collapse;
}

.pfcm-rates-table th,
.pfcm-rates-table td {
  padding: 14px;
  border: 1px solid #e5e7eb;
}

.pfcm-rates-table th {
  background: #f3f4f6;
  text-align: left;
}

a.button {
    background-color: #75E197;
    padding: 10px 20px !important;
}
button.button.button-primary{
    background-color: #75E197;
}

.cancel-button {
    background: red !important;
}

.cancel-button:hover {
  background: #b91c1c !important;
}




/* Login Page*/



.pfcm-login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(to right, #1f2937, #75e197);
}

.pfcm-login-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 420px;
}

.pfcm-login-header {
  text-align: center;
  margin-bottom: 25px;
  color: #75e197;
}

.pfcm-login-header i {
  font-size: 36px;
  margin-bottom: 10px;
}

.pfcm-login-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

form label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  color: #111827;
}

form input {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  font-size: 15px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
}

form button {
  margin-top: 25px;
  width: 100%;
  padding: 14px;
  background: #75e197;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #1e40af;
}

.pfcm-error {
  background: #fdecea;
  color: #b91c1c;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}
.notice {
  padding: 10px;
  margin-bottom: 15px;
  border-left: 4px solid #007cba;
}
.notice-success {
  background: #e7f5e7;
  border-color: #28a745;
}
.notice-error {
  background: #fbeaea;
  border-color: #dc3545;
}
.location-tab-button {
  padding: 8px 12px;
  margin-right: 10px;
  border: 1px solid #ccc;
  background: #f4f4f4;
  border-radius: 4px;
  cursor: pointer;
}
.location-tab-button.active {
  background-color: #0073aa;
  color: white;
}
.pfcm-orders-table th, .pfcm-orders-table td {
  text-align: center;
}
.pfcm-settings-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: block !important;
}
section#settings {
    background: white;
    border-radius: 10px;
    padding: 20px;
}