/* ============================================================================
 * Forsa webmail skin — deliberately almost nothing.
 *
 * This is stock Roundcube Elastic. The custom AMOLED/gold theme that used to
 * live here was removed at the owner's request: it fought Elastic at every
 * turn (Elastic is LESS-compiled with colours baked into individual chrome
 * elements, so each surface had to be overridden by hand and new ones kept
 * surfacing), and the upkeep was not worth what it bought.
 *
 * The skin still EXISTS rather than just setting skin=elastic, because a child
 * skin is the only supported way to add anything of our own without editing
 * files inside the Roundcube image — which is read-only, lost on every
 * upgrade, and invisible to anyone reading this repo.
 *
 * So: everything inherits from Elastic, and the only rule here is the circular
 * crop on the brand mark.
 * ==========================================================================*/

@import url("../../elastic/styles/styles.min.css");

/* The brand asset is a black SQUARE with the ring mark inside it. Cropping to a
   circle in CSS keeps ONE source asset — no second file to drift out of sync.
   object-fit guards against a non-square asset being squashed if the logo is
   ever swapped. */
#logo,
img#logo {
	border-radius: 50% !important;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}
