/* 
    Power BI Graphs - Stylesheet
    --------------------------------
    This stylesheet provides a clean and elegant design for the Power BI Graphs page.
    - Beautifully styled heading with a subtle text shadow.
    - Full-width cards with a responsive layout.
    - Hover effects for interactive transformation.
    - Optimized spacing for readability and aesthetics.
    - Ensures all images fit well within their respective cards.
*/

/* General Body Styling */
body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 20px;
}

/* Beautiful Heading */
h1 {
    font-size: 36px;
    font-weight: bold;
    color: #4A90E2;
    /* Elegant blue shade */
    margin-bottom: 50px;
    /* Increased space after heading */
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

/* Image Container */
.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    /* Increased space between cards */
}

/* Card Styling */
.card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    width: 80%;
    /* Leaves 10% padding on left and right */
    max-width: 1200px;
    /* Prevents it from becoming too large on big screens */
    height: 550px;
    border: 2px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Ensure images fit within cards */
.card img {
    width: 100%;
    height: 500px;
    border-radius: 8px;
}

/* File Name Styling */
.image-name {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
    text-transform: capitalize;
    color: #4A90E2;
    font-family: Arial, Helvetica, sans-serif;
}

/* Hover Effect */
.card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid #6cb2eb;
}