.active-img {
    border: 2px solid rgb(4, 221, 0);
}
.active-textbox {
    border: 2px solid blue;
    /* Blue border for active div */
}
.text-controls,
.image-controls {
    display: none; /* Hide by default */
}

.active .text-controls {
    display: block; /* Show when active */
}

.active .image-controls {
    display: block; /* Show when active */
}