body {
    margin: 0;
    padding: 0;
    background-color: #008080; 
    font-family: "MS Sans Serif", Tahoma, sans-serif;
}

.window {
    width: 1000px;   /* ⬅️ MÁS ANCHO */
    margin: 20px auto;
    background: #c0c0c0;
    border: 2px solid #000000;
    box-shadow: 2px 2px 0 #000000;
}

.window-title-bar {
    background: linear-gradient(to right, #000080, #1084d0);
    color: #ffffff;
    padding: 4px 6px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-title-bar .title {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
}

.window-title-bar .controls span {
    display: inline-block;
    border: 1px solid #ffffff;
    width: 16px;
    height: 14px;
    text-align: center;
    margin-left: 2px;
    font-size: 12px;
    line-height: 14px;
    background-color: #c0c0c0;
    color: #000000;
}

.window-menu-bar {
    background: #c0c0c0;
    border-bottom: 1px solid #808080;
    padding: 2px 6px;
    font-size: 12px;
}

.window-menu-bar span {
    margin-right: 10px;
    cursor: default;
}

.window-content {
    padding: 8px;
    background: #c0c0c0;
    font-size: 12px;
}

.toolbar {
    border: 1px solid #808080;
    padding: 4px;
    margin-bottom: 8px;
    background: #c0c0c0;
}

.toolbar .btn {
    border: 2px solid #ffffff;
    border-right-color: #808080;
    border-bottom-color: #808080;
    background: #c0c0c0;
    padding: 2px 6px;
    font-size: 12px;
    color: #000000;
    text-decoration: none;
    margin-right: 4px;
    display: inline-flex;
    align-items: center;
}

.toolbar .btn:active {
    border-left-color: #808080;
    border-top-color: #808080;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
}

.toolbar img {
    margin-right: 4px;
}

.table-claims {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.table-claims th,
.table-claims td {
    border: 1px solid #808080;
    padding: 3px 4px;
    font-size: 12px;
}

.table-claims th {
    background: #000080;
    color: #ffffff;
}

.filter-bar {
    padding: 4px;
    border: 1px solid #808080;
    background: #c0c0c0;
}

input,
select,
textarea {
    font-size: 12px;
    border: 2px solid #ffffff;
    border-right-color: #808080;
    border-bottom-color: #808080;
    background: #ffffff;
}

.pagination {
    margin-top: 6px;
    font-size: 12px;
}
