.feather {
  /* Default styles applied to all Feather icons */
  width: 24px;
  height: 24px;
  stroke: currentColor;
  /* other default properties */
}

.feather-small {
  /* Custom size for small icons */
  width: 16px; /* Example small size */
  height: 16px;
}

/* Container Base */
.app-notification {
    background: #ffffff !important;
    border: 1px solid #e0e6ed !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    padding: 16px !important;
    width: 350px;
    max-width: 90vw;
}

/* Layout Wrapper */
.notif-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Icon Styling */
.notif-icon-section {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Text Hierarchy */
.notif-title {
    display: block;
    color: #1a1f36;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 4px;
}

.notif-message {
    display: block;
    color: #4f566b;
    font-size: 13px;
    line-height: 1.5;
}

/* Status Accents (The side line) */
.app-notification.alert-success { border-left: 4px solid #24b47e !important; }
.app-notification.alert-info { border-left: 4px solid #0070f3 !important; }
.app-notification.alert-warning { border-left: 4px solid #f5a623 !important; }
.app-notification.alert-danger { border-left: 4px solid #eb5757 !important; }

/* Status Icon Colors */
.alert-success [data-growl="icon"] { color: #24b47e; }
.alert-info [data-growl="icon"] { color: #0070f3; }
.alert-danger [data-growl="icon"] { color: #eb5757; }

/* Close Button Styling */
.app-notification .close {
    font-size: 18px;
    font-weight: 300;
    color: #a3acb9;
    opacity: 1;
    text-shadow: none;
    top: 12px !important;
    right: 12px !important;
}

.app-notification .close:hover {
    color: #1a1f36;
}

.pcoded-hasmenu > a:after {
    content: "▾";
    font-family: inherit !important;
    float: right;
}

.pcoded .pcoded-navbar li.pcoded-hasmenu > a:after {
    content: none !important;
}

/* Disable Themify arrows */
.pcoded .pcoded-navbar li.pcoded-hasmenu > a:after {
    content: none !important;
}

/* FontAwesome arrow */
.pcoded .pcoded-navbar li.pcoded-hasmenu > a {
    position: relative;
}

.pcoded .pcoded-navbar li.pcoded-hasmenu > a:after {
    content: "\f107"; /* chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.25s ease;
}

/* Rotate when open */
.pcoded .pcoded-navbar li.pcoded-hasmenu.pcoded-trigger > a:after {
    transform: translateY(-50%) rotate(180deg);
}
