.notices {
    padding: 15px 20px 15px 30px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}
.notices p {
    margin: 0;
    line-height: 1.6;
}
/* Yellow / Warning */
.notices.yellow {
    border-left: 10px solid #f0ad4e;
    background: #fff9e6;
    color: #856404;
}
/* Red / Error or Danger */
.notices.red {
    border-left: 10px solid #d9534f;
    background: #fff5f5;
    color: #a94442;
}
/* Blue / Info */
.notices.blue {
    border-left: 10px solid #5bc0de;
    background: #f0faff;
    color: #0c5460;
}
/* Green / Success */
.notices.green {
    border-left: 10px solid #5cb85c;
    background: #f4fff3;
    color: #155724;
}
/* Базові стилі для посилань у нотатках */
.notices a {
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

/* Yellow / Warning Links */
.notices.yellow a {
    color: #664d03; /* Глибокий коричневий */
}
.notices.yellow a:hover {
    color: #443402;
}

/* Red / Error Links */
.notices.red a {
    color: #842029; /* Глибокий бордовий */
}
.notices.red a:hover {
    color: #58151c;
}

/* Blue / Info Links */
.notices.blue a {
    color: #055160; /* Темно-синій */
}
.notices.blue a:hover {
    color: #03323b;
}

/* Green / Success Links */
.notices.green a {
    color: #0f5132; /* Темно-зелений */
}
.notices.green a:hover {
    color: #0a3622;
}
