/* Lock Screen Styles */
#lock-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    background-image: url('../assets/textures/solaris.jpg'); /* Reuse solaris texture or just black/pattern */
    background-repeat: repeat;
    z-index: 20000; /* Above everything */
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-dialog {
    width: 400px;
    background: var(--cde-bg-light);
    border: var(--cde-border-width) solid;
    border-color: var(--cde-highlight) var(--cde-shadow-dark) var(--cde-shadow-dark) var(--cde-highlight);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.lock-titlebar {
    height: 26px;
    background: var(--cde-titlebar-active);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border-bottom: var(--cde-border-width) solid var(--cde-shadow-dark);
}

.lock-title {
    color: white;
    font-weight: normal;
    font-size: 12px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.lock-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lock-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.lock-text p {
    margin: 2px 0;
    font-size: 12px;
}

.lock-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lock-form label {
    font-weight: bold;
    min-width: 70px;
}

.lock-form input {
    flex: 1;
    background: #d4d6dc; /* Slightly darker/inset look */
    border: 1px solid;
    border-color: var(--cde-shadow-dark) var(--cde-highlight) var(--cde-highlight) var(--cde-shadow-dark);
    padding: 4px;
    font-family: monospace;
    outline: none;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1);
}

.lock-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.lock-buttons button {
    min-width: 80px;
}

.lock-footer {
    margin-top: 10px;
    font-size: 10px;
    text-align: center;
    color: #555;
    border-top: 1px solid #999;
    padding-top: 8px;
}
