/* Base styles for the portlet */
.portlet-header {
    display: none;
}

/* Ensure React app styles are not overridden by Liferay defaults */
.portlet-content input[type="text"],
.portlet-content input[type="search"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Prevent Liferay input overrides from affecting search input */
.portlet-content .app-generator-recent-apps-search-input {
    all: unset;
    width: 100%;
    padding: 10px 18px 8px 40px;
    border: 1.5px solid rgba(15, 23, 42, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    outline: none;
    font-size: 13.5px;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.06);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    display: block;
}

.portlet-content .app-generator-recent-apps-search-input::placeholder {
    color: rgba(15, 23, 42, 0.4);
    opacity: 1;
}

.portlet-content .app-generator-recent-apps-search-input:hover {
    border-color: rgba(15, 23, 42, 0.25);
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.11), 0 1px 3px rgba(15, 23, 42, 0.07);
}

.portlet-content .app-generator-recent-apps-search-input:focus {
    border-color: rgba(249, 115, 22, 0.65);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12), 0 3px 12px rgba(15, 23, 42, 0.10);
}

/* Add your custom styles here */

/* Hide Liferay footer */
#footer,
footer[role="contentinfo"] {
    display: none !important;
}