/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, #000000, #1e1e1e, #333333);
    color: #eaeaea;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
    background: #1b1b1b;
    color: #ffffff;
    border-bottom: 2px solid #444444;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    text-shadow: 0 0 10px #ff9933;
}

main {
    padding: 20px;
}

#graphs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.graph {
    background: #222222;
    border: 2px solid #444444;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    width: 45%;
    min-width: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.graph h2 {
    background: #1e1e1e;
    color: #ff9933;
    margin: 0;
    padding: 10px;
    text-align: center;
    border-bottom: 2px solid #444444;
    
}

.graph img {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

.graph iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: none;
    flex-grow: 0;
}

#explanation-section {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background: #1e1e1e;
    border: 2px solid #444444;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#explanation-section h2 {
    color: #ff9933;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #ff9933;
}

.step-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    background: #222222;
    border: 2px solid #444444;
    border-radius: 10px;
    padding: 10px;
    width: 24%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.step img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.arrow {
    font-size: 6em;
    color: #ff9933;
    text-shadow: 0 0 5px #ff9933;
}

footer {
    text-align: center;
    padding: 10px;
    background: #1b1b1b;
    color: #bbbbbb;
    border-top: 2px solid #444444;
}

footer p {
    margin: 0;
}
