.alert.alert-success {
    padding: 10px;
}
/* Sidebar (initially hidden) */
.canvas-sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    right: -20px;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s ease;
    padding-top: 60px;
    color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    padding-left: 20px;
}

.canvas-sidebar.open {
    right: 0px;
    padding-right: 25px;
    width: 25%;
}

/* Sidebar links */
.canvas-sidebar a {
    padding: 5px 5px 5px 12px;
    text-decoration: none;
    font-size: 12px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

/* Hover effect on links */
.canvas-sidebar a:hover {
    color: #f1f1f1;
}

/* Close button */
.canvas-sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color: #000;
}

.truncate {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.copy-toast {
    position: fixed;
    right: 20px;
    color: black;
    padding: 20px 30px;
    border-radius: 5px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    animation: fadeIn 0.3s ease-in-out;
    bottom: 30px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

table {
  width: 100%; 
  table-layout: auto;
}
table td, table th {
  white-space: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

span#notif-count {
    color: #000;
    background: #f77c14;
    font-size: 7px;
    position: absolute;
    top: -10px;
    padding: 5px;
}

.note-item p {
    font-size: 13px;
    color: #000;
}
.note-item .delete-btn {
    height: 50px;
}

.note-item {
    background: #f9f9f9; 
    padding: 12px; 
    border: 1px solid #eee;
    border-radius: 4px; 
    margin-bottom: 10px; 
    display: flex; 
    justify-content: space-between;
}

.notes-container{
    display: flex;
    justify-content: end;
    align-items: center;
}

.delete-btn.btn.btn-danger {
    padding: 8px;
    margin-left: 10px;
    margin: 0 0px 0 10px;
}

.blinking-text {
animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}