﻿/* wwwroot/css/mdi.css */
.mdi-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    border: 1px solid #ccc;
    overflow: hidden;
}

.mdi-window {
    background: white;
    border: 1px solid #999;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.mdi-header {
    padding: 5px 10px;
    background: #f0f0f0;
    border-bottom: 1px solid #999;
    cursor: move;
    display: flex;
    justify-content: space-between;
}

.mdi-title {
    font-weight: bold;
}

.mdi-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 5px;
}

.mdi-content {
    padding: 10px;
    height: calc(100% - 30px);
}

.mdi-resize-handle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #666;
    cursor: nwse-resize;
}
