@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: #f5f5f5;
    padding: 40px 20px 0 20px;
    direction: rtl;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
}

.header {
    padding: 30px 40px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.logo {
    max-width: 120px;
    margin-bottom: 20px;
}

.otp-code {
    font-size: 22px;
    color: #3490EC;
    border: 1px dashed #3490EC;
    padding: 7px 60px;
    border-radius: 500px;
    width: fit-content;
    margin: auto;
    margin-bottom: 20px;
}


.message {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 22px;
    max-width: 320px;
    margin: auto;
    font-weight: 500;
}

.app-promo {
    padding: 30px;
    text-align: center;
}

.app-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.app-stores {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.app-store-btn {
    display: inline-block;
    height: 40px;
}

.app-store-btn img {
    height: 100%;
    border-radius: 30px;
}

.footer {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 14px;
}

.social-icons {
    margin: 20px 0;
}

.social-icon {
    width: 32px;
    height: 32px;
    margin: 0 5px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.facebook {
    background-image: url('https://cdn-icons-png.flaticon.com/512/124/124010.png');
}

.twitter {
    background-image: url('https://cdn-icons-png.flaticon.com/512/733/733579.png');
}

.linkedin {
    background-image: url('https://cdn-icons-png.flaticon.com/512/174/174857.png');
}

.instagram {
    background-image: url('https://cdn-icons-png.flaticon.com/512/2111/2111463.png');
}

.item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d4d4d4;
}

.table {
    width: 100%;
    text-align: right;
}

.order-item {
    color: #434343;
}

.d-inline-block {
    display: inline-block;
    vertical-align: top;
}

.text-left {
    text-align: left;
}

tr td {
    border-bottom: 1px solid #cdcdcd;
    padding: 10px 0;
}

tr:last-child td {
    border-bottom: none;
    padding: 10px 0 0 0;
}


.color-green {
    color: #45B65C;
}

.color-primary {
    color: #50C879;
}

.bold {
    font-weight: bold;
}

.ml-1 {
    margin-left: 5px;
}

.mr-1 {
    margin-right: 5px;
}

.badge {
    display: inline-block;
    background-color: #45B65C;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    width: fit-content;
    font-size: 14px;
}

.badge.in-progress {
    background-color: #F2F2F2;
}

.color-gray {
    color: #7B7B7B;
}

.color-gray-dark {
    color: #5E5E5E;
}


.mb-1 {
    margin-bottom: 5px;
}

.mb-2 {
    margin-bottom: 10px;
}

.mb-3 {
    margin-bottom: 15px;
}

.mb-4 {
    margin-bottom: 20px;
}


.social-media-icon-link {
    display: inline-block;
    text-decoration: none;
}

.social-media-icon-link img {
    width: 45px;
    height: 45px;
}