:root{
    --background-color: rgba(0, 128, 255, 0.7);
    --text-color: #fff9f9;
    --button-color: rgb(16, 146, 16);
    --button-color-dark: rgb(42, 154, 42);
    --bg-footer: linear-gradient(to bottom, #53a8fd, #0066cc);
    --heading-font-style : 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.order-main-content {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    width: 100%;
}

/* Header styling */
.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: linear-gradient(to right, #4caf50, #81c784);
    color: white;
    border-radius: 5px;
}

.order-header h1 {
    font-size: 24px;
    margin: 0;
}

/* Table styling */
.order-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.order-table th, .order-table td {
    text-align: left;
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.order-table th {
    background-color: #4caf50;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
}

.order-table tbody tr:hover {
    background-color: #f1f8e9;
    cursor: pointer;
}

.order-table tbody tr {
    transition: background-color 0.3s ease;
}

/* Selected row highlight */
.order-table tbody tr.active {
    background-color: #c8e6c9;
}

/* Order Details Section */
.order-details {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.order-details h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.order-details p {
    margin: 5px 0;
    font-size: 16px;
}

/* Buttons */
.order-btn {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.3s;
}

.order-btn:hover {
    background: #388e3c;
}

/* Animations */
@keyframes highlight {
    0% {
        background-color: #c8e6c9;
    }
    100% {
        background-color: transparent;
    }
}

.order-row-animate {
    animation: highlight 1s ease;
}
.order-heading{
    font-family: var(--heading-font-style);
    font-size: 24px;
    margin: 10px;
    color: #0077cc;
    font-weight: bolder;
}

/*========== RESPONSIVE SELLER ORDERS ==========*/
@media (max-width: 768px) {
  .order-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 10px;
  }
  .order-table {
    display: block;
    overflow-x: auto;
  }
  .order-main-content {
    padding: 10px;
  }
  .order-details h2 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .order-heading {
    font-size: 18px;
    margin: 6px;
  }
  .order-header h1 {
    font-size: 18px;
  }
  .order-table th,
  .order-table td {
    padding: 8px 10px;
    font-size: 13px;
  }
}
