.tool-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.2s ease, color 0.2s ease;
}

.tool-btn:hover svg {
    transform: scale(1.1);
    color: #ffffff;
}

.tool-btn:disabled svg {
    opacity: 0.5;
}

.holo-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    margin-right: 8px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.holo-btn:hover svg {
    transform: scale(1.1);
    color: inherit;
}

.holo-btn:disabled svg {
    opacity: 0.5;
}

.input-tools .tutor-file-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-dropdown button svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    margin-right: 8px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.menu-dropdown button:hover svg {
    transform: scale(1.1);
    color: inherit;
}

.menu-dropdown button:disabled svg {
    opacity: 0.5;
}

.upgrade-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    margin-right: 8px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.upgrade-btn:hover svg {
    transform: scale(1.1);
    color: inherit;
}

.upgrade-btn:disabled svg {
    opacity: 0.5;
}

.menu-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.2s ease, color 0.2s ease;
}

.menu-btn:hover svg {
    transform: scale(1.1);
    color: inherit;
}

.menu-btn:disabled svg {
    opacity: 0.5;
}

.star-rating .star svg {
    height: 1.5rem;
    width: 1.5rem;
    fill: none;
    stroke: #FFD700;
    transition: stroke 0.2s ease;
}

.star-rating .star:hover svg {
    stroke: #FFC107;
}

.star-rating .star:focus svg {
    outline: none;
    stroke: #FFC107;
}

.star-rating .star.selected svg {
    stroke: #FFD700;
    fill: #FFD700;
}

.modal-buttons button svg {
    height: 1.5rem;
    width: 1.5rem;
    fill: none;
    stroke: currentColor;
    vertical-align: middle;
    margin-right: 0.5rem;
    transition: stroke 0.2s ease;
}

.modal-buttons button:hover svg {
    stroke: #ffffff;
}

.modal-buttons button:focus svg {
    outline: none;
    stroke: #ffffff;
}

.settings-list button svg {
    height: 1.5rem;
    width: 1.5rem;
    fill: none;
    stroke: currentColor;
    vertical-align: middle;
    margin-right: 0.5rem;
    transition: stroke 0.2s ease;
}

.settings-list button:hover svg {
    stroke: #ffffff;
}

.settings-list button:focus svg {
    outline: none;
    stroke: #ffffff;
}

.settings-list button {
    display: inline-flex;
    align-items: center;
}

@media (max-width: 768px) {
    .tool-btn svg {
        width: 18px;
        height: 18px;
    }

    .holo-btn svg {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }

    .menu-dropdown button svg {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }

    .upgrade-btn svg {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }

    .menu-btn svg {
        width: 18px;
        height: 18px;
    }
}

