main {
    margin-top: 60px;
}

.custom-navbar {
    background-color: #DF1067;
}

.custom-button {
    background-color: #DF1067;
    color: white;
    border: none;
}

.custom-button:hover {
    background-color: #c20e5b;
    color: white;
}

.custom-title {
    font-weight: bold;
    color: #FFFFFF;
    margin-left: 10px;
    text-decoration: none;
}

.blinking-dot {
    height: 10px;
    width: 10px;
    background-color: #DF1067;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
