/* Modal Styles - Dialog modals for creating sessions and autoruns */
.modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}
.modal-content {
background: #252526;
border: 1px solid #3e3e42;
border-radius: 8px;
width: 90%;
max-width: 500px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.modal-header {
padding: 16px 20px;
border-bottom: 1px solid #3e3e42;
display: flex;
justify-content: space-between;
align-items: center;
}
.modal-header h3 {
font-size: 16px;
font-weight: 600;
color: #ffffff;
}
.close {
color: #858585;
font-size: 24px;
font-weight: bold;
cursor: pointer;
line-height: 1;
}
.close:hover {
color: #d4d4d4;
}
.modal-body {
padding: 20px;
}
.modal-body label {
display: block;
margin-bottom: 8px;
font-size: 13px;
font-weight: 500;
color: #d4d4d4;
}
.modal-body input {
width: 100%;
padding: 10px 12px;
background: #1e1e1e;
border: 1px solid #3e3e42;
border-radius: 4px;
color: #d4d4d4;
font-size: 14px;
margin-bottom: 16px;
}
.modal-body input:focus {
outline: none;
border-color: #007acc;
}
.modal-body select {
width: 100%;
padding: 10px 12px;
background: #1e1e1e;
border: 1px solid #3e3e42;
border-radius: 4px;
color: #d4d4d4;
font-size: 14px;
margin-bottom: 16px;
cursor: pointer;
}
.modal-body select:focus {
outline: none;
border-color: #007acc;
}
.modal-body small {
display: block;
margin-top: 4px;
font-size: 12px;
color: #858585;
}
.modal-footer {
padding: 16px 20px;
border-top: 1px solid #3e3e42;
display: flex;
justify-content: flex-end;
gap: 10px;
}