/* ===== GLOBAL CONTAINER ===== */
.um-container,.inv-container {
    padding-bottom: 20px;
}

/* ===== HEADER ===== */
.um-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* ===== TABLE BASE ===== */
.um-table, .inv-table {
    width: 100%;
    background: #fff;
    border-collapse: collapse;
    border-radius: 0px;
    overflow: hidden;
}

/* ===== TABLE HEADER ===== */
.um-table th, .inv-table th {
    background: #a4a3a4;
    color: #fff;
    padding: 12px;
    text-align: left;
}

/* ===== TABLE BODY ===== */
.um-table td,.inv-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

/* ===== EMPTY STATE ===== */
.no-data {
    text-align: center;
    padding: 30px;
    color: #888;
}

/* ===== LOCATION BADGES ===== */
.loc-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.loc-badge {
    background: #eef2f7;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    border: 1px solid #dce4ec;
}

/* ===== STATUS ===== */
.status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.status-active {
    background: #eafaf1;
    color: #27ae60;
}

.status-deactive {
    background: #fdecea;
    color: #e74c3c;
}

.status-pending {
    background: #fff8e1;
    color: #f39c12;
}

/* ===== BUTTONS ===== */
.btn {
    border: none;
    padding: 6px 12px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 12px;
}

.btn-edit {
    background: #000000;
    color: #fff;
}

.btn-edit:hover {
    background: #a4a3a4;
}

/* ===== INVITATION FOOTER ===== */
.inv-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn-send-invite {
    background: #000000;
    color: #fff;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 0px;
    font-size: 14px;
    transition: 0.2s;
}

.btn-send-invite:hover {
    background: #a4a3a4;
}

/* ===== FORM STYLING ===== */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    padding: 10px 12px;
    border: 1px solid #dce4ec;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

/* ===== TABLE ALIGNMENT (USER MATRIX / PERMISSIONS) ===== */
.um-table {
    table-layout: fixed;
    margin-top: 10px;
}

.um-table th,
.um-table td {
    text-align: center;
}

.um-table th:first-child,
.um-table td:first-child {
    text-align: left;
    width: 50%;
}

.um-table th:nth-child(2),
.um-table th:nth-child(3),
.um-table td:nth-child(2),
.um-table td:nth-child(3) {
    width: 25%;
}

/* ===== RADIO ALIGNMENT ===== */
.radio-center {
    display: flex;
    justify-content: center;
    align-items: center;
}


/*button.btn {
    margin-top: 10px;
}*/


.form-section {
    margin-bottom: 30px;
}

.btn-section {
    margin-top: 30px;
}



/*.stco-msg {
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 6px;
    font-size: 14px;
}

.stco-msg-error {
    background: #ffe5e5;
    color: #d8000c;
}

.stco-msg-success {
    background: #e6ffed;
    color: #2e7d32;
}

.stco-msg-warning {
    background: #fff4e5;
    color: #ff9800;
}*/
.header-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 16px 24px;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    box-sizing: border-box;
}

.text-group {
    display: flex;
    flex-direction: column;
}

.greeting {
    color: #1a3a8a;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.status {
    color: #8e8e93;
    font-size: 0.9rem;
    margin-top: 2px;
}

.notification-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bell-icon {
    width: 26px;
    height: 26px;
    color: #3b5998;
}

.dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    background-color: #d32f2f;
    border-radius: 50%;
    border: 2px solid #ffffff;
}












.canopy-page-container {
  /*Maintain with no styles*/
}


.canopy-section { /*Pages cam have multiple sections. Like a table for showing listed users, and a section for showing pending users. 2 sections, 1 page.*/
  margin-bottom:30px;
}

.canopy-section-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.canopy-section-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
}

.canopy-table {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
  border-radius: 0px;
  overflow: hidden;
}

.canopy-table th {
  background: #a4a3a4;
  color: #fff;
  padding: 12px;
  text-align: left;
}

.canopy-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.canopy-action-button-main, input[type="submit"], button {
  background: #000;
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1em;
  transition: 0.2s;
  cursor:pointer;
  border:0px;
}
.canopy-action-button-main:hover {
  background:#a4a3a4;
  color:#000000;
}

.canopy-action-button-sub {
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9em;
  background: #a4a3a4;
  color: #fff;
  cursor:pointer;
  border:0px;
}
.canopy-action-button-sub:hover{
  background:#000000;
  color:#a4a3a4;
}


.canopy-form {}
.canopy-form-row { display: flex; gap:5px; margin-bottom:10px; }
.canopy-form-row input, input[type="text"], input[type="email"], input[type="password"], input[type="number"], select {
  width:100%;
  padding: 10px !important;
  font-size: 1.1em;
  border: 1px solid #a4a3a41b !important;
  border-radius: 5px;
}
.canopy-form-row input:read-only { background:#f0f0f0; }
.canopy-column-full { flex: 1; display: flex; flex-direction: column; }
.canopy-column-1-2 { flex: 1; display: flex; flex-direction: column; }
.canopy-column-1-3 { flex: 1; display: flex; flex-direction: column; }
.canopy-column-2-3 { flex: 2; display: flex; flex-direction: column; }
.canopy-success-error-msg { font-size:0.9em; }

.canopy-limit-width-small { max-width:500px; }
