/* Base styles */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.logo {
    max-width: 100%;
    max-height: 100%;
    shape-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dagda color themes */
.dagda-dark-blue {
    background-color: rgb(0, 106, 169);
    color: white;
}

.dagda-yellow {
    background-color: rgb(255, 196, 35);
    color: rgb(0, 106, 169);
}

.dagda-red {
    background-color: rgb(244, 99, 81);
    color: rgb(0, 106, 169);
}

.dagda-green {
    background-color: rgb(57, 118, 43);
    color: white;
}
