@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');
.order-container {
    width: 80%;
    margin: 20px auto;
    background-color: #bdbdbd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 20px;
    position: relative;
}
.order-status {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}
.order-status-icon {
    font-size: 24px;
    color: #00ff00;
}
.order-status-content {
    margin-right: 15px;
    flex-grow: 1;
    padding: 10px;
    background-color: #bdbdbd;
    border-radius: 5px;
    border-right: 5px solid #00ff00;
}
.order-status h2 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
}
.order-status p {
    margin: 5px 0;
    font-size: 1em;
    color: #666;
}
.order-date {
    font-weight: bold;
    color: #333;
}
.order-line {
    position: absolute;
    top: 30px;
    right: 12px;
    width: 2px;
    height: 100%;
    background-color: #00ff00;
    z-index: -1;
}
.order-status:last-child .line {
    display: none;
}
.order-status::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 24px;
    width: 16px;
    height: 16px;
    background-color: #00ff00;
    border-radius: 50%;
    z-index: 1;
}
.order-text {
    font-weight: bold;
    color: #000000;
}
.order-title-search-text{
    font-weight: bold;
    color: #000000;
}
.footer{
    background-color: rgb(2,0,36);
    background-size: cover; /* تمتد الصورة لتغطية كامل الخلفية */
    background-position: center; /* تحديد موضع الصورة في الوسط */
    background-repeat: no-repeat; /* تحديد موضع الصورة في الوسط */
    text-align: center;
    color: white;
    font-size: 20px;
}
