/* Common CSS for all GUI Tools */

/* Body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

/* Header styling */
.header {
    display: block;
    justify-content: left;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

/* Left‐side grouping on the header: usually logo and title */
.header-title {
    display: flex;
    align-items: center;
    justify-content: left; /* push logo/title to left, nav to right */
}

/* Logo */
.logo {
    width: 50px;
    height: auto;
    margin-right: 15px;
}

/* Loading overlay style */
#loadingOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    z-index: 10;
}
