/* General Page Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f3f3f3;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 80%;
  max-width: 1200px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Section */
h1 {
  font-size: 24px;
  color: #0078d4;
  text-align: center;
  margin-bottom: 20px;
}

/* Folder/File List */
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

li {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  margin: 5px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.2s ease;
}

li:hover {
  background-color: #e1e1e1;
}

li.directory {
  font-weight: bold;
  color: #0078d4;
}

li.directory:hover {
  background-color: #c8e0fc;
}

/* Icons */
.icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}

.folder-icon {
  background-image: url('folder-icon.png'); /* Replace with actual folder icon URL */
}

.file-icon {
  background-image: url('file-icon.png'); /* Replace with actual file icon URL */
}

/* File and Folder Details */
.details {
  flex-grow: 1;
}

.details span {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

/* Path Navigation */
.path {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.path a {
  text-decoration: none;
  color: #0078d4;
  margin-right: 8px;
  font-size: 14px;
}

.path a:hover {
  text-decoration: underline;
}

.path .current {
  color: #333;
  font-weight: bold;
}

/* Footer Section */
footer {
  text-align: center;
  font-size: 12px;
  padding: 10px;
  color: #666;
  border-top: 1px solid #e0e0e0;
}

/* File Size & Date Styling */
.file-size {
  font-size: 12px;
  color: #666;
  margin-left: auto;
}
