body {
    font-family: Arial, sans-serif;
}

a {
  text-decoration: none !important; /* Убирает подчеркивание */
  color: inherit !important; /* Наследует цвет текста от родителя */
}



.results-list{
	display: flex;
    flex-direction: column;
    gap: 12px;
}

.instructor-card {
    font-size: 10px;
    color: #000;
    padding: 10px 10px 52px;
    background-color: aliceblue;
    border-radius: 15px;
    position: relative;
}

.instructor-like-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    border: 1px solid #cfd8ee;
    background: rgba(255, 255, 255, 0.96);
    color: #2f3a62;
    border-radius: 999px;
    height: 34px;
    min-width: 58px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 9px 22px rgba(44, 59, 109, 0.14);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    z-index: 3;
}

.instructor-like-btn:hover {
    transform: translateY(-1px);
}

.instructor-like-btn:focus-visible {
    outline: none;
    border-color: #93acf9;
    box-shadow: 0 0 0 3px rgba(118, 149, 247, 0.2);
}

.instructor-like-btn .instructor-like-btn-icon {
    font-size: 17px;
    line-height: 1;
    color: #8f99bd;
}

.instructor-like-btn.is-liked {
    border-color: #ffbcc9;
    background: linear-gradient(180deg, #fff2f4 0%, #ffe9ee 100%);
    color: #d93052;
}

.instructor-like-btn.is-liked .instructor-like-btn-icon {
    color: #ff3f6b;
}

.instructor-card-body{
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.instructor-card-body .instructor-info-col1 {
	display: flex;
	gap: 12px;
}

.instructor-card-body .instructor-avatar{
	width: 30%;
}

.instructor-card-body .instructor-avatar img{
	border-radius: 40px;
}

.instructor-card-body .instructor-info{
    display: flex;
    gap: 12px;
}

.instructor-card-body .instructor-extra{
	display: flex;
    flex-direction: column;
    align-items: flex-end;
	white-space: nowrap;
}

.card-title{
	font-size: 18px;
}

.instructor-modal-loading {
    padding: 10px 16px 18px;
}

.instructor-modal-progress {
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ec8ce2 0%, #f5bddf 45%, #ec8ce2 100%);
    background-size: 200% 100%;
    animation: instructor-progress 1s linear infinite;
    margin-bottom: 14px;
}

.instructor-skeleton-line,
.instructor-skeleton-avatar {
    background: linear-gradient(90deg, #ececec 25%, #f7f7f7 37%, #ececec 63%);
    background-size: 400% 100%;
    animation: instructor-shimmer 1.2s ease-in-out infinite;
}

.instructor-skeleton-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.instructor-skeleton-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
}

.instructor-skeleton-lines {
    flex: 1;
}

.instructor-skeleton-line {
    height: 10px;
    border-radius: 7px;
    margin-bottom: 8px;
}

.instructor-skeleton-line:last-child {
    margin-bottom: 0;
}

.instructor-skeleton-line.w60 {
    width: 60%;
}

.instructor-skeleton-line.w80 {
    width: 80%;
}

.instructor-skeleton-line.w100 {
    width: 100%;
}

.instructor-modal-error {
    padding: 12px 16px 18px;
    color: #555;
    font-size: 14px;
}

@keyframes instructor-progress {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes instructor-shimmer {
    0% { background-position: 120% 0; }
    100% { background-position: -120% 0; }
}

