/* Blank Page Window Styles */
.blank-page-window {
    display: none;
    position: absolute;
    top: 100px;
    left: 100px;
    width: 640px;
    height: 400px;
    background: white;
    border: 2px solid #000;
    z-index: 1000;
}

.blank-page-window .windows-title-bar {
    cursor: move;
    margin-bottom: 0;
}

.blank-page-window .window-content {
    padding-top: 0 !important;
}

.blank-page-function-buttons {
    display: flex;
    width: 100%;
    height: 80px;
    gap: 0;
    margin: 0;
    padding: 0;
}

.blank-page-function-buttons button {
    flex: 1;
    height: 80px;
    border: 1px solid #000;
    background-color: #000;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 25%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 100%);
    cursor: pointer;
    position: relative;
    text-align: left;
    padding: 4px;
}

.blank-page-function-buttons button.with-icon {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blank-page-function-buttons .function-key {
    position: absolute;
    top: 2px;
    left: 2px;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
}

.blank-page-function-buttons .function-label {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: bold;
    color: #0f0;
}

.blank-page-function-buttons .function-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.blank-page-content {
    padding: 16px;
}
