/* branding.css - Custom Branding Overrides */

/* Round Logo Global Style */
.rounded-logo {
    border-radius: 50% !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    object-fit: cover;
    /* Default size, can be overridden */
    width: 60px; 
    height: 60px;
    transition: all 0.3s ease;
}

.rounded-logo:hover {
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

/* Header Logo Specifics */
.tk-logo a img.rounded-logo {
    width: 50px; /* Adjust for header height */
    height: 50px;
}

/* Auth Page Centering */
.tk-login-info {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tk-login-info a {
    display: inline-block;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rounded-logo {
        width: 45px;
        height: 45px;
    }
}
