2024-09-12 11:43:53 +00:00
|
|
|
/* General container styling */
|
|
|
|
.document-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
max-width: 1200px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 20px;
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
2024-08-05 11:42:32 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 11:43:53 +00:00
|
|
|
/* Navigation panel */
|
|
|
|
#navigation-panel {
|
2024-08-05 11:42:32 +00:00
|
|
|
display: flex;
|
2024-09-12 11:43:53 +00:00
|
|
|
align-items: center;
|
|
|
|
background-color: #1e90ff;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 8px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
color: white;
|
2024-08-05 11:42:32 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 11:43:53 +00:00
|
|
|
.profile-link {
|
|
|
|
margin-right: 15px;
|
2024-08-05 11:42:32 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 11:43:53 +00:00
|
|
|
.profile-icon {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
border-radius: 50%;
|
2024-08-05 11:42:32 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 11:43:53 +00:00
|
|
|
.panel-description {
|
|
|
|
font-size: 1.2em;
|
|
|
|
font-weight: bold;
|
2024-08-05 11:42:32 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 11:43:53 +00:00
|
|
|
/* Popup window styles */
|
|
|
|
.popup-window {
|
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
background-color: white;
|
|
|
|
padding: 20px;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
|
|
|
|
z-index: 100;
|
2024-08-05 11:42:32 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 11:43:53 +00:00
|
|
|
.popup-window-header {
|
|
|
|
font-size: 1.5em;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
color: #333;
|
2024-08-10 03:09:51 +00:00
|
|
|
}
|
2024-09-12 11:43:53 +00:00
|
|
|
|
|
|
|
.popup-window-subheader {
|
|
|
|
font-size: 1.2em;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
color: #666;
|
2024-08-11 12:17:53 +00:00
|
|
|
}
|
2024-09-12 11:43:53 +00:00
|
|
|
|
|
|
|
.form-table {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-label {
|
2024-09-12 07:47:29 +00:00
|
|
|
text-align: left;
|
2024-09-12 11:43:53 +00:00
|
|
|
padding-right: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #333;
|
2024-08-25 14:58:18 +00:00
|
|
|
}
|
2024-09-12 11:43:53 +00:00
|
|
|
|
|
|
|
.form-input {
|
2024-09-12 07:47:29 +00:00
|
|
|
width: 100%;
|
2024-09-12 11:43:53 +00:00
|
|
|
padding: 8px;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-actions {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-btn {
|
|
|
|
background-color: #1e90ff;
|
|
|
|
color: white;
|
|
|
|
border: none;
|
|
|
|
padding: 10px 20px;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-btn:hover {
|
|
|
|
background-color: #005fbb;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Chat list */
|
|
|
|
.chat-list-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
background-color: #fff;
|
|
|
|
padding: 20px;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-add {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
width: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-list {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Custom scrollbar */
|
|
|
|
.chat-list {
|
|
|
|
max-height: 400px;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-list::-webkit-scrollbar {
|
|
|
|
width: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-list::-webkit-scrollbar-track {
|
|
|
|
background: #f1f1f1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-list::-webkit-scrollbar-thumb {
|
|
|
|
background: #888;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-list::-webkit-scrollbar-thumb:hover {
|
|
|
|
background: #555;
|
|
|
|
}
|