/* Start custom CSS for html, class: .elementor-element-9472ae5 */.airise-cloud {
  display: flex;
  height: 100%;
  min-height: 600px;
  font-family: 'Segoe UI', sans-serif;
  background: #0f0f1a;
  color: white;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(123,47,247,0.2);
}

.sidebar {
  width: 220px;
  background: #1a1a29;
  padding: 1rem;
  box-shadow: 2px 0 10px rgba(123,47,247,0.2);
}
.sidebar h3 {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 1rem;
}
.folder-link {
  margin: 0.4rem 0;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
}
.folder-link:hover {
  background: #2a2a3d;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

header {
  background: linear-gradient(90deg, #7b2ff7, #000428);
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: 2px solid #7b2ff7;
  cursor: pointer;
}

.disk-container {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}
.disk-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.disk-header button {
  background: #7b2ff7;
  border: none;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}
.disk-header button:hover {
  background: #a66bff;
}

.folders, .files {
  background: #1c1c2b;
  padding: 1rem;
  border-radius: 10px;
}
.folder, .file {
  background: #2a2a3d;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  cursor: pointer;
  position: relative;
}
.folder:hover, .file:hover {
  background: #383852;
}

.dropzone {
  border: 2px dashed #7b2ff7;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  color: #aaa;
}
.dropzone.dragover {
  background: rgba(123, 47, 247, 0.1);
}

.context-menu {
  display: none;
  position: absolute;
  background: #26263a;
  border: 1px solid #555;
  border-radius: 6px;
  padding: 0.5rem;
  z-index: 1000;
}
.context-menu div {
  padding: 0.3rem 0.8rem;
  cursor: pointer;
}
.context-menu div:hover {
  background: #3a3a4d;
}

.file-preview {
  font-size: 0.9rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .airise-cloud {
    flex-direction: column;
    min-height: auto;
  }

  .sidebar {
    width: 100%;
    padding: 0.8rem;
    box-shadow: none;
    border-bottom: 1px solid #2a2a3d;
  }

  .main {
    flex: 1;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
  }

  .avatar {
    width: 32px;
    height: 32px;
  }

  .disk-container {
    padding: 1rem;
    gap: 0.8rem;
  }

  .disk-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .disk-header button {
    width: 100%;
    padding: 0.6rem;
    font-size: 1rem;
  }

  .folders, .files {
    padding: 0.8rem;
  }

  .folder, .file {
    padding: 0.6rem;
    font-size: 0.95rem;
  }

  .dropzone {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  .context-menu {
    font-size: 0.9rem;
  }

  .file-preview {
    font-size: 0.85rem;
  }
}

.text-preview, .excel-preview {
  background: #1c1c2b;
  color: white;
  padding: 1rem;
  margin: 1rem;
  border-radius: 10px;
  max-height: 60vh;
  overflow: auto;
  font-family: monospace;
  box-shadow: 0 0 15px rgba(123,47,247,0.1);
}
.text-preview pre {
  white-space: pre-wrap;
  word-break: break-word;
  user-select: text;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 26, 0.9);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup.hidden {
  display: none;
}
.popup-content {
  background: #1a1a29;
  color: white;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(123, 47, 247, 0.4);
}
.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #7b2ff7;
  padding: 0.8rem 1rem;
  font-weight: bold;
}
.popup-header button {
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}
.popup-body {
  background: #10101a;
  padding: 1rem;
  overflow: auto;
  flex: 1;
}
.popup-body pre, .popup-body table {
  color: #ddd;
  background: transparent;
  border: none;
  white-space: pre-wrap;
  word-break: break-word;
}
.popup-body pre[contenteditable="true"] {
  outline: none;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e8cde79 */.airise-cloud {
  display: flex;
  height: 100%;
  min-height: 600px;
  font-family: 'Segoe UI', sans-serif;
  background: #0f0f1a;
  color: white;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(123,47,247,0.2);
}

.sidebar {
  width: 220px;
  background: #1a1a29;
  padding: 1rem;
  box-shadow: 2px 0 10px rgba(123,47,247,0.2);
}
.sidebar h3 {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 1rem;
}
.folder-link {
  margin: 0.4rem 0;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
}
.folder-link:hover {
  background: #2a2a3d;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

header {
  background: linear-gradient(90deg, #7b2ff7, #000428);
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: 2px solid #7b2ff7;
  cursor: pointer;
}

.disk-container {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}
.disk-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.disk-header button {
  background: #7b2ff7;
  border: none;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}
.disk-header button:hover {
  background: #a66bff;
}

.folders, .files {
  background: #1c1c2b;
  padding: 1rem;
  border-radius: 10px;
}
.folder, .file {
  background: #2a2a3d;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  cursor: pointer;
  position: relative;
}
.folder:hover, .file:hover {
  background: #383852;
}

.dropzone {
  border: 2px dashed #7b2ff7;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  color: #aaa;
}
.dropzone.dragover {
  background: rgba(123, 47, 247, 0.1);
}

.context-menu {
  display: none;
  position: absolute;
  background: #26263a;
  border: 1px solid #555;
  border-radius: 6px;
  padding: 0.5rem;
  z-index: 1000;
}
.context-menu div {
  padding: 0.3rem 0.8rem;
  cursor: pointer;
}
.context-menu div:hover {
  background: #3a3a4d;
}

.file-preview {
  font-size: 0.9rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .airise-cloud {
    flex-direction: column;
    min-height: auto;
  }

  .sidebar {
    width: 100%;
    padding: 0.8rem;
    box-shadow: none;
    border-bottom: 1px solid #2a2a3d;
  }

  .main {
    flex: 1;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
  }

  .avatar {
    width: 32px;
    height: 32px;
  }

  .disk-container {
    padding: 1rem;
    gap: 0.8rem;
  }

  .disk-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .disk-header button {
    width: 100%;
    padding: 0.6rem;
    font-size: 1rem;
  }

  .folders, .files {
    padding: 0.8rem;
  }

  .folder, .file {
    padding: 0.6rem;
    font-size: 0.95rem;
  }

  .dropzone {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  .context-menu {
    font-size: 0.9rem;
  }

  .file-preview {
    font-size: 0.85rem;
  }
}/* End custom CSS */