.custom-info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 14px;

    color: #ffffff;
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;

    border-radius: 3px;
    border: none;
    overflow: hidden;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);

    transition: transform 0.25s ease, box-shadow 0.25s ease;

    position: relative;
}

.custom-info-content {
    position: relative;
    z-index: 2;
    width: 100%;
    /*padding-bottom: 35px;*/ /* buton için boşluk */
    box-sizing: border-box;
}

.custom-info .title,
.custom-info p,
.custom-info ul {
    margin: 0;
}

.custom-info p,
.custom-info ul {
    position: relative;
    font-size: 14px;
    line-height: 1.55;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
    z-index: 1;
    font-weight: 400 !important;
}

.custom-info ul {
    margin-top: 8px;
    padding-left: 18px;
}

.custom-info ul li {
    margin-bottom: 5px;
    list-style: disc;
    z-index: 1;
}

.custom-info .title {
    position: relative;
    display: block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    z-index: 1;
}

.custom-info a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.custom-info-btn {
    display: inline-block;
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 11;
    text-decoration: none !important;
    white-space: nowrap;
}

.custom-info-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.custom-info i {
    font-size: 120px;
    color: rgba(0, 0, 0, 0.16);
    position: absolute;
    z-index: 1;
    left: -15px;
    top: -20px;
    pointer-events: none;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    color: #ffebcd;
}

.close-btn:hover {
    opacity: 1;
}

.custom-info ::placeholder,
.custom-info :-ms-input-placeholder,
.custom-info ::-ms-input-placeholder {
    color: #fff;
    opacity: 1;
}

.custom-success-info {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.custom-danger-info {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.custom-warning-info {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.custom-primary-info {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.custom-black-info {
    background: linear-gradient(135deg, #0f172a, #020617);
}

.custom-black-info i {
    color: #fff;
    opacity: 0.1;
}

@media (max-width: 576px) {
    .custom-info {
        padding: 16px;
    }

    .custom-info i {
        font-size: 90px;
        left: -10px;
        top: -10px;
    }

    .custom-info-btn {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 15px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .custom-info-btn {
        font-size: 12px;
        padding: 5px 12px;
    }
}

@media (min-width: 577px) {
    .custom-info-content {
        padding-right: 110px;
        box-sizing: border-box;
    }
}
