/* Small overrides on top of the vendored SB Admin 2 theme — kept separate so
   the vendored files can be swapped/updated without losing local tweaks. */

.sidebar-brand-text {
    font-size: 1rem;
    line-height: 1.25;
}

.bg-login-image {
    background: linear-gradient(160deg, #4e73df 0%, #224abe 100%);
}

.nav-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    font-size: 0.85rem;
}
.nav-group-toggle:hover {
    color: #fff;
}
.nav-group-caret {
    font-size: 0.6rem;
    transition: transform 0.15s ease-in-out;
}

/* Crop tool (see assets/crop.js) */
.crop-stage {
    position: relative;
    display: inline-block;
    max-width: 100%;
    line-height: 0;
}
.crop-stage img {
    max-width: 100%;
    max-height: 70vh;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}
#cropBox {
    position: absolute;
    box-sizing: border-box;
    border: 2px dashed #feea00;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.55);
    cursor: move;
}
.crop-resize-handle {
    position: absolute;
    right: -7px;
    bottom: -7px;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid #e5007d;
    border-radius: 50%;
    cursor: nwse-resize;
}
