/*
Make the page background white.
Set the panel to blue with a drop shadow. 
*/

ni-tab-control {
    box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.75);
}

.resizable-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.resizable-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Elliptical button styling */
.jqx-button {
    display: inline-flex; /* Use inline-flex to align glyphs and text */
    align-items: center; /* Center align glyphs and text */
    padding: 4px 12px; /* Smaller padding for smaller buttons */
    font-size: 12px; /* Smaller font size */
    font-weight: 600;
    color: #ffff;
    background-color: #28a745;
    border: none;
    border-radius: 999px; /* Large border radius for a fully rounded shape */
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: none; /* Ensure no shadow or outline */
    outline: none; /* Remove default outline */
}
/* Hover state */
.jqx-button:hover {
    background-color: #28a745;
}

/* Active state */
.jqx-button:active {
    background-color: #28a745;
}

/* Example colors for different labels */
.jqx-button.bug {
    background-color: #d73a49;
}

.jqx-button.feature {
    background-color: #28a745;
}

.jqx-button.documentation {
    background-color: #6f42c1;
}
.jqx-button * {
    color: #ffffff !important;
}

.custom-description {
    font-family: 'Helvetica';
    font-size: 16px;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 2px;
    margin: 2px 0;
    line-height: 1.5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.custom-description:focus {
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.25);
    outline: none;
}

.custom-description * {
    background-color: transparent !important;
}

.custom-title {
    font-family: 'Helvetica';
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    font-size: 24px;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    padding: 2px;
    margin: 2px 0;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
    justify-content: center;
    align-items: center;
    display: flex;
}

.custom-title:hover {
    background-color: rgba(189, 195, 199, 0.5);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* Additional styles to ensure transparency */
.custom-title * {
    background-color: transparent !important;
}

.name-title {
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}