/* LimeNetwork Branding CSS */

/* Logo container styling */
#lime-logo-container {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    width: 200px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#lime-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Login page specific styling */
.task-login #lime-logo-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 80px;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.task-login #lime-logo {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Mail interface styling */
.task-mail #lime-logo-container {
    width: 180px;
    height: 50px;
    top: 5px;
    left: 5px;
    background: rgba(0, 117, 200, 0.9);
}

/* Header integration */
.topright #lime-logo-container {
    position: static;
    display: inline-block;
    width: 120px;
    height: 35px;
    margin-right: 10px;
    background: transparent;
    box-shadow: none;
    vertical-align: middle;
}

/* Responsive design */
@media (max-width: 768px) {
    #lime-logo-container {
        width: 120px;
        height: 35px;
    }

    .task-login #lime-logo-container {
        width: 200px;
        height: 60px;
    }
}

/* Hide original logo if exists */
.logo img,
.brand img {
    display: none !important;
}

/* Custom branding for footer */
.footer::before {
    content: "Powered by LimeNetwork";
    color: #666;
    font-size: 12px;
    margin-right: 10px;
}