﻿.dash-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.dash-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

.dash-card .card-body p {
    font-weight: 500;
    color: #6c757d;
}

/* Hover effect للكارد */
.hover-shadow:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 1.25rem rgba(0,0,0,0.15);
    transition: all 0.2s ease-in-out;
}

.card-body p {
    line-height: 1.4;
}
.navbar-brand img:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

    .customer-card {
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .customer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    /* أيقونة العميل مع Gradient */
    .customer-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        font-weight: bold;
        background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    }
    /* تكبير النصوص داخل الكارد */
    .customer-card h5 {
        font-size: 1.2rem;
    }

    .customer-card span {
        font-size: 0.95rem;
    }

.form-floating > label {
    right: 0; /* اجعلها من الجهة اليمنى */
    left: auto; /* أوقف الوضع الافتراضي من اليسار */
    text-align: right;
}




/* تكبير الخط داخل الـ inputs */
.form-control {
    font-size: 1.1rem;
}