﻿body {
    margin: 0;
    padding: 10px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Cairo', 'Roboto', sans-serif;
    background: linear-gradient(-45deg, #eaf4f5, #d6e9eb, #b4d3d6, #9cc5c8);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.card {
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
    color: #2c3e50;
    padding: 15px;
    animation: fadeIn 0.8s ease-in-out;
}

    .card h2 {
        text-align: center;
        font-weight: bold;
        margin-bottom: 20px;
        color: #0e6251;
    }

.data-label {
    font-weight: bold;
    font-size: 1.1rem;
    opacity: 0.85;
    color: #154360;
}

.data-value {
    font-size: 1.2rem;
    margin-top: 12px;
    margin-bottom: 12px;
    color: #1b4f72;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

a {
    visibility: hidden;
}

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 15px;
    color: #eaf4f5;
    background: linear-gradient(90deg, #0e6251, #117a65);
    border-top: 2px solid #48c9b0;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
}

    .site-footer p {
        margin: 0;
    }

    .site-footer .company-name {
        font-weight: bold;
        color: #76d7c4;
        font-size: 16px;
    }

/* عنوان Operation Info */
.section-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0e6251;
    background: linear-gradient(90deg, rgba(19, 141, 117, 0.15), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(19, 141, 117, 0.4);
    border-radius: 12px;
    padding: 10px 25px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-shadow: 0 1px 1px rgba(255,255,255,0.5);
    animation: fadeIn 0.8s ease-in-out;
    letter-spacing: 1px;
}

    .section-title .icon {
        font-size: 1.7rem;
        color: #117a65;
        animation: spinIcon 4s linear infinite;
    }

@keyframes spinIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
