diff --git a/src/styles/detected_operations.less b/src/styles/detected_operations.less
index 2ecf598..bcadd38 100644
--- a/src/styles/detected_operations.less
+++ b/src/styles/detected_operations.less
@@ -4,4 +4,46 @@
margin: 10px;
}
-}
\ No newline at end of file
+}
+
+.drill_schedule {
+ display: flex;
+ width: 100%;
+ height: 75vh;
+ align-items: stretch;
+
+ & > .list {
+ flex: 1;
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+
+ & > .ant-list, .ant-table {
+ flex: 1;
+ }
+
+ & > .buttons {
+ display: flex;
+
+ & > * {
+ flex: 1;
+ }
+ }
+ }
+
+ & > .driller_list {
+ flex: 2;
+ width: 10vw;
+ margin-right: 15px;
+
+ .driller_list_active {
+ background-color: rgba(0, 255, 0, .25);
+ }
+ }
+
+ & > .schedule_list {
+ width: 10vw;
+ flex: 3;
+ margin-left: 15px;
+ }
+}