.orders {
    background-color: white;
    width: 900px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 20px auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.orders h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.orders .form-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.orders label {
    width: 150px;
    font-weight: bold;
    color: #337ab7;
}

.orders input {
    flex: 1;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.orders table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.orders table th,
.orders table td {
    border: 1px solid #ccc;
    padding: 8px 12px;
    text-align: center;
}

.orders table th {
    background-color: #f5f5f5;
    color: #333;
    font-weight: bold;
}

.orders table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.orders table tbody tr:hover {
    background-color: #f1f1f1;
}

.orders table img {
    max-height: 60px;
    object-fit: cover;
}

.order-left {
    width: 250px;
}

.video-box {
    margin-bottom: 15px;
}

.video-box iframe {
    width: 100%;
    height: 160px;
    border-radius: 10px;
}

