/* Allgemeine App-Styles */
html, body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Kleines Kopier-Icon neben Branch/Host */
.copy-icon-btn {
    padding: 2px !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 0 !important;
}
.copy-icon-btn .mud-svg-icon {
    font-size: 0.85rem !important;
}

/* Login button loading spinner */
.catosero-spin {
    animation: catosero-spin 1.4s linear infinite;
    transform-origin: center;
    display: inline-block;
}
@keyframes catosero-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
