/*# sourceMappingURL=custom.min.css.map */
.cke_notifications_area,
.cke_notification_warning {
  display: none;
}

/* Basic styling for file manager layout */
.file-manager {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Header section styling */
.file-manager-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Folder creation form styling */
.folder-form,
.upload-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Input styling */
.folder-form input[type="text"] {
  padding: 10px;
  width: 200px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

/* Button styling */
.file-manager-header button {
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background-color: #405189;
  color: white;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.file-manager-header button:hover {
  background-color: #0056b3;
}

/* Current folder display */
.current-folder {
  margin: 20px 0;
  font-size: 18px;
  color: #333;
}

.current-folder a {
  color: #405189;
  text-decoration: none;
}

.current-folder a:hover {
  text-decoration: underline;
}
/* Arrange files and folders in columns */
.file-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

.file-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  position: relative;
}

.file-item img {
  border-radius: 4px;
}

.folder-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
}

/* Hide actions by default */
.file-actions {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
}

/* Show actions on click */
.file-item.active .file-actions {
  display: flex;
}

/* Styling for Copy and Delete buttons */
.file-actions button {
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  background-color: #405189;
  color: white;
  border-radius: 4px;
}

.file-actions button:hover {
  background-color: #0056b3;
}

.file-actions .delete {
  background-color: #dc3545;
}

.file-actions .delete:hover {
  background-color: #c82333;
}

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

/* Custom styling for the file input */
.custom-file-input {
  position: relative;
  overflow: hidden;
}

.custom-file-input input[type="file"] {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Label for file input */
.custom-file-input label {
  display: inline-block;
  color: white;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-file-input label:hover {
  background-color: #0056b3;
}

/* Styling for the Upload button */
.upload-form button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background-color: #405189;
  color: white;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.upload-form button:hover {
  background-color: #0056b3;
}
