body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.top-ribbon {
    background-color: #101357;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.top-ribbon a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.container {
    margin-top: 20px;
}

.profile-header {
    text-align: center;
    margin-bottom: 20px;
}

.profile-header img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    transition: transform 0.3s ease;
}

.profile-header img:hover {
    transform: scale(1.1);
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.card table {
    width: 100%;
    border-collapse: collapse;
}

.card table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.card table td strong {
    color: #333;
}

.card table td.text-primary {
    color: #0056b3;
}

.footer {
    text-align: center;
    margin-top: 20px;
}

.footer a {
    color: #0056b3;
    text-decoration: none;
}

.footer img {
    width: 100px;
    margin-top: 10px;
}

.copyright {
    bottom: 0;
    width: 100%;
    background-color: #101357;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    border-top: 1px solid #444;
}

.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 400px;
    height: 400px;
    background-image: url('blob.png');
    background-size: cover;
    animation: fall 8s linear forwards;
    pointer-events: none;
    opacity: 0;
}

@keyframes fall {
    0% {
        transform: translateY(-100vh) rotate(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.left-confetti {
    left: 0;
}

.right-confetti {
    right: 0;
}
