/* Dark theme CSS styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
    color: #fff;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 36px;
}

.profile-photo {
    width: 100px; /* Adjust size as needed */
    border-radius: 50%; /* Make it circular */
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 24px;
    color: #f0ad4e; /* Custom accent color */
}

.graph {
    width: 100%; /* Ensure graph fills container */
}

p {
    line-height: 1.6;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Loading animation CSS styles */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e1e1e;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

.loading-text {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.typed-text {
    display: inline-block;
    animation: blink-caret 0.75s step-end infinite;
    color: #f0ad4e; /* Custom accent color */
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff; }
}
    }
    100% {
        transform: rotate(360deg);
    }
}

     
