
/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Pirata One', cursive;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fffcfc; /* Light gray background #f4f4f4 */
}

header {
  background-color: #faf7f7; /*ffffff */
  color: #000000; /* Dark gray text color */
  font-weight: bolder;
  padding: 20px; /* Increase padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
  font-family: 'Century Gothic', Arial, sans-serif !important;
}

#claim-search input {
  padding: 10px; /* Increase padding */
  border: 1px solid #0c0c0c; /* Light gray border */
  border-radius: 5px; /* Add border radius */
}

#container {
  display: flex;
  flex: 1;
  background-color: #fff; /* White background for the container */
  margin: 20px; /* Add margin */
  border-radius: 5px; /* Add border radius */
  overflow: hidden; /* Hide overflowing content */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow */
}

#assigned-claims {
  flex: 1;
  overflow-y: auto;
  padding: 20px; /* Add padding */
}

aside {
  width: 200px;
  background-color: #faf7f7; /* Lighter gray background */
  padding: 20px; /* Add padding */
}

aside div {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #070707; /* Light gray background e0e0e0 */
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: #faf4f4;
}

aside div:hover {
  background-color: #868683; /* Darker gray on hover */
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0; /* Add margin */
  border-radius: 5px; /* Add border radius */
  overflow: hidden; /* Hide overflowing content */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow */
}

th,
td {
  padding: 12px; /* Increase padding */
  border-bottom: 1px solid #ddd; /* Light gray border */
  text-align: left;
  color: #080808;
  font-family: 'Georgia', serif !important;
}

th {
  background-color: #f9f9f9; /* Light gray background for header */
  font-weight: bold; /* Bold font weight */
  color: #080808;
  font-family: 'Georgia', serif !important;
}

/* Add hover effect to table rows */
tr:hover {
  background-color: #f5f5f5; /* Light gray background on hover */
}

.attachment {
  display: inline-block; /* Use flexbox layout */
  flex-direction: row; /* Stack elements vertically */
  align-items: center; /* Center items horizontally */
  margin-right: 10px;
}

.attachment-icon {
  width: 30px; /* Adjust the width as needed */
  height: 30px;
}


.attachment-name {
  /* Add any necessary styling for the attachment name */
  margin-top: 5px; /* Adjust the margin to create space between the icon and the name */
  font-size: 13px;
  max-width: 120px;
  word-wrap: break-word; /* Allow long words to be broken and wrap onto the next line */
  overflow: hidden;
  text-align: center;
  padding-right: 7px;
  display: block;
}

/* Style the search input */
#search {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  max-width: 300px; /* Limit width */
}

/* Style the sorting options */
#sortingOptions {
  display: flex;
  align-items: center;
}

#sortOrderContainer {
  margin-left: 20px; /* Add spacing */
}

#sortOrderContainer button {
  padding: 8px 16px; /* Adjust button padding */
  margin-left: 10px; /* Add spacing between button and select */
  border: none;
  background-color: #007bff; /* Blue button background */
  color: #fff; /* White text color */
  border-radius: 5px; /* Add border radius */
  cursor: pointer;
}

#sortOrderContainer button:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

/* Style the header image */
#header-image {
  position: relative;
  border-radius: 5px;
  max-width: 1400px; /* Ensure image fits container */
  width: 300px;
  height: 100px; /* Maintain aspect ratio */
  opacity: 1; /* Adjust the opacity value as needed (0 = fully transparent, 1 = fully opaque) */
}
