/* ============================ 
/* Panel items */
/* ============================ */


/* ============================ 
/* Projects details */
/* ============================ */
.project-info-header{
  display: flex;
  gap: 4px;
}

.project-info-header i{
  margin: 16px 0 6px 0;
}

#project-details-title{
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  border: 1px solid;
  border-radius: 40px;
  font-family: var(--font-type);
}

#project-details-title h2{
  font-size: medium;
}


/* ============================ 
/* Projects panel */
/* ============================ */

#project-panel-btn{
  background: var(--green-background) !important;
}

#project-panel-btn:hover{
  background: #2c9c0a !important;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.panel-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.projects-table {
  width: 100%;
  border-collapse: collapse;
}

.projects-table th, .projects-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.projects-table th {
  background-color: #f5f5f5;
}

.projects-table tr:hover {
  background-color: #f0f8ff;
}

.projects-table td.actions {
  gap: 10px;
}

.projects-table td.actions i {
  cursor: pointer;
  font-size: 16px;
  color: #555;
}

.projects-table td.actions i:hover {
  color: #007bff;
}
