body {
    font-family: 'Tahoma', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* خلفية متدرجة */
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    direction: rtl;
}

.web-card {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    overflow: hidden;
}

.card-header {
    background: linear-gradient(to right, #5c7cfa, #862e9c); /* تدرج الهيدر */
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.card-header h1 { font-size: 1.4rem; margin: 0; }
.card-header p { margin: 10px 0 0; opacity: 0.9; }

.photo-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.photo-container img {
    width: 140px;
    height: 170px;
    object-fit: cover;
    border: 4px solid #5c7cfa;
    border-radius: 10px;
}

.card-details { padding: 0 30px 30px; }

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.label { color: #666; font-weight: bold; }
.value { color: #333; font-weight: bold; }

.station-box {
    margin-top: 15px;
    background: #fff5f5;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px dashed #e53e3e;
}

.red-text { color: #e53e3e; font-size: 1.2rem; }