/* Beekee Cloud Installer Admin Settings Styles */

/* Prevent password fields from extending beyond container width */
.admin-settings [data-passwordunmask="displayvalue"] {
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}

/* Ensure the password wrapper doesn't break layout */
.admin-settings .form-password {
    max-width: 100%;
    overflow: hidden;
}

/* Specific styling for GitHub private key field to handle very long content */
#admin-local_beekee_cloud_installer_github_private_key .form-password [data-passwordunmask="displayvalue"] {
    max-width: 300px;
}

/* Download Update Icon Styling */
.download-update-btn {
    transition: all 0.2s ease;
}

.download-update-btn:hover {
    color: #333333 !important;
    transform: scale(1.1);
}

.download-update-btn:active {
    transform: scale(0.95);
}
