/**
 * Toast Close Button Component
 * 
 * Manual dismiss button with hover effects.
 * 
 * @package    Toastifier
 * @subpackage Components
 * @version    2.0.0
 */

.toastifier-toast-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 12px;
    margin-top: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    color: var(--toastifier-close-btn, rgba(0, 0, 0, 0.5));
    flex-shrink: 0;
}

.toastifier-toast-close:hover {
    background-color: rgba(0, 0, 0, 0.08);
    color: var(--toastifier-close-btn-hover, rgba(0, 0, 0, 0.8));
    transform: rotate(90deg);
}

.toastifier-toast-close:active {
    transform: rotate(90deg) scale(0.9);
}

.toastifier-toast-close svg {
    width: 18px;
    height: 18px;
}
