.search-section {
    background: white;
    border-radius: 10px;
    padding: 0 0 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    text-align: center;
}

.search-section h2 {
    font-size: 1.8rem;
    color: #1a2a6c;
    margin-bottom: 20px;
}

.search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-reset {
    position: absolute;
    right: 132px;
    font-size: 30px;
    top: 6px;
    color: #ff6868;
}

.search-reset:hover {
    color: #cc3636;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #1a2a6c;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
    outline: none;
}

.search-btn {
    background: #1a2a6c;
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.search-btn i {
    margin-right: 8px;
}

.search-btn:hover {
    background: #FFB606;
}


.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f1f1;
}

.order-title {
    font-size: 1.5rem;
    color: #1a2a6c;
    margin: 0px;
}

.order-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.order-info,
.customer-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

.info-title {
    font-size: 1.2rem;
    color: #1a2a6c;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    margin-bottom: 10px;
}

.info-label {
    width: 100px;
    color: #666;
    font-weight: 500;
}

.info-value {
    flex: 1;
    color: #333;
}

.order-items {
    margin-bottom: 30px;
}

.items-table {
    width: 100%;
    border-collapse: collapse;
}

.items-table th {
    background: #1a2a6c;
    color: white;
    padding: 14px 15px;
}

.items-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.items-table tr:hover {
    background: #f9f9f9;
}

.item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.item-name {
    font-weight: 500;
    color: #1a2a6c;
}

.item-price {
    color: #666;
}

.order-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

.summary-title {
    font-size: 1.2rem;
    color: #1a2a6c;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-label {
    color: #666;
    font-weight: 500;
}

.summary-value {
    color: #333;
    font-weight: 500;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #ddd;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2a6c;
}

.order-section-not-found {
    text-align: center;
    font-size: 20px;
    padding: 20px;
}

.bg-psu td {
    background-color: #1a2a6c;
    color: #fff;
}

@media (max-width: 768px) {
    .order-title {
        font-size: 18px;
        margin: 0px;
    }

    .order-status {
        font-size: 12px;
    }
}

.summary-style {
    background-color: #eee;
}

.hidden {
    position: relative;
}

.hidden::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.9;
    border-radius: 6px;
}