﻿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, #dfe9f3, #cfdff8, #a1c4fd, #8fd3f4);
    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.12);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
    color: #34495e;
    padding: 15px;
    animation: fadeIn 0.8s ease-in-out;
}

    .card h2 {
        text-align: center;
        font-weight: bold;
        margin-bottom: 20px;
    }

.data-label {
    font-weight: bold;
    font-size: 1.1rem;
    opacity: 0.85;
}

.data-value {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: navy;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

a {
    visibility: hidden;
}

/*NEW ADDED*/

form#form1 {
    display: block;
    width: 100%;
    max-width: none;
}

.component-case-title {
    text-align: left;
    font-weight: bold;
    margin-bottom: 20px;
    color: firebrick;
}

.panel-components-header {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    text-shadow: 2px 2px 0px #bdc3c7, 4px 4px 0px #7f8c8d, 6px 6px 8px rgba(0,0,0,0.6);
}

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 15px;
    color: #eee;
    background: linear-gradient(90deg, #2c3e50, #34495e); /* خلفية أنيقة غامقة */
    border-top: 2px solid #1abc9c;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
}

    .site-footer p {
        margin: 0;
    }

    .site-footer .company-name {
        font-weight: bold;
        color: #1abc9c; /* لون مميز للشركة */
        font-size: 16px;
    }


/*body {
    margin: 0;
    padding: 10px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;*/
/* font-family: 'Segoe UI', sans-serif;*/
/*font-family: 'Cairo', 'Roboto', sans-serif;*/
/*background: linear-gradient(-45deg, #dfe9f3, #a1c4fd, #8ec5fc, #5aa9f7);*/ /*best #2*/
/*background: linear-gradient(-45deg, #dfe9f3, #cfdff8, #a1c4fd, #8fd3f4);*/ /*best #1*/
/*animation: gradientBG 20s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}*/
