:root {
    --teal: #1faaba;
    --bg-light: #f2f0e4;
    --orange: #fb8c00;
}

body {
    background-color: #f2f0e4;
    
    /* padding: 50px; */
    font-family: sans-serif;
    margin: 0px;
}
.header1{
    display: none;
}
.alls {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* يبدأ العناصر من الأعلى */
    gap: 20px;              /* المسافة بين الكارت الأول والثاني */
    padding: 10px 10px;
    width: 100%;
    box-sizing: border-box;
    
}
.card1 {
    display: flex;
    justify-content: center;
}
.card {
   width: 500px;
    background: var(--bg-light);
    border-radius: 25px; /* أضفت انحناء ليتماشى مع التصميم */
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    flex-shrink: 0; /* يمنع الكارت من الصغر إذا ضاقت الشاشة */
}

.header {
    background: var(--teal);
    color: white;
    padding: 20px;
    font-weight: bold;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-align: center;
}

.user-info {
    background: white;
    margin: 15px;
    padding: 15px;
    border-radius: 15px;
    text-align: right;
}

.row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.status-box {
    background: #fdfcf7;
    margin: 15px;
    padding: 30px;
    border-radius: 20px;
}

.circle {
    width: 80px;
    height: 80px;
    border: 3px solid #ffcc80;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-title {
    color: var(--orange);
    margin: 10px 0 5px;
}

.eta-box {
    background: #dcece4;
    margin: 15px;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
}

.clock {
    background-color: white;
    padding: 4px;
    border-radius: 8px;
}

.btn{
    display: none;
}


.footer-text {
    font-size: 10px;
    color: #999;
    margin: 15px 0;
}

/* حركة دوران وتأرجح للمفتاح */
.spin-animation {
    font-size: 35px;
    display: inline-block;
    animation: wrench-move 2.5s ease-in-out infinite;
}



.card2 {
   display: flex;
    flex-direction: column;
    flex-shrink: 0;
}



.card3 {
  width: 300px; /* عرض الكارت الجانبي */
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eee;
}

.card4 {
    width: 300px; /* عرض الكارت الجانبي */
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eee;
}

.h {
    padding: 0px;
    margin: 0px;
    background-color: #18A6BE;
    border-radius: 20px;
}

@keyframes wrench-move {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(-30deg); }
    40% { transform: rotate(15deg); }
    60% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

/* حركة نبض للدائرة الخارجية لجذب الانتباه */
.pulse-animation {
    animation: soft-pulse 2s infinite;
}

@keyframes soft-pulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 140, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(251, 140, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 140, 0, 0); }
}

@media screen and (max-width: 900px) {
    .alls {
    width: 350px;
    background: var(--bg-light);
    /* border-radius: 25px; */
    /* overflow: hidden; */
    text-align: center;
    /* box-shadow: 0 15px 35px rgba(0,0,0,0.1); */
    inline-size: -webkit-fill-available;
    }
    .card {
        width: 350px;
    }

    .card2 {
        display: none;
    }
    .card4{
         display: none;
    }

    .btn {
        display: block;
    background: var(--teal);
    color: white;
    border: none;
    width: 80%;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}
}