/* Global styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    position: relative;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Heading with gradient and animation */
.dashboard-heading {
    font-size: 3.5rem;
    background: linear-gradient(to right, #ff9800, #03a9f4, #4caf50);
    -webkit-background-clip: text;
    color: transparent;
    animation: glow 1.5s infinite;
    margin-bottom: 40px;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    }
}

.project-status {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* Project card styles */
.project-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 45%;
    margin: 20px;
    animation: fadeInUp 0.6s ease forwards;
}

.ongoing {
    border-left: 5px solid #ff9800;
}

.in-queue {
    border-left: 5px solid #03a9f4;
}

.done {
    border-left: 5px solid #4caf50;
}

.budget-not-confirmed {
    border-left: 5px solid #f44336;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f4f4f9;
    color: #333;
    font-weight: bold;
}

/* Fade in animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect for cards */
.project-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Background Vector Graphics */
.animated-vector-left,
.animated-vector-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 150px;
    background-repeat: no-repeat;
    background-size: contain;
    animation: moveSide 15s infinite linear;
    opacity: 0.2;
}

.animated-vector-left {
    left: -150px;
    background-image: url('https://www.svgrepo.com/show/3291/abstract-shapes.svg');
}

.animated-vector-right {
    right: -150px;
    background-image: url('https://www.svgrepo.com/show/3291/abstract-shapes.svg');
}

@keyframes moveSide {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media screen and (max-width: 900px) {
    .project-card {
        width: 100%;
        margin: 10px 0;
    }

    .dashboard-heading {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 600px) {
    .animated-vector-left,
    .animated-vector-right {
        display: none;
    }
}
